$(document).ready(function(){

    $(".descripcio-llarga").hide();

    /*$(".llegir-mes")
	 .bind("click", function() {
            if( $(this).parent().next().next(".descripcio-llarga").is(':visible') ){
                $(this).parent().next().next(".descripcio-llarga").hide('slow');
            } else {
                $(this).parent().next().next(".descripcio-llarga").show('slow');
            }
        });*/
    $(".boto_llegir_mes")
        .bind("click", function() {
            if( $(this).parent().parent().children(".descripcio-llarga").is(':visible') ){
                $(this).parent().parent().children('.descripcio-llarga').hide('slow');
            } else {
				$(this).parent().parent().children('.descripcio-llarga').show('slow');
            }
			//alert($(this).parent().parent().children('.descripcio-llarga').html());
        });
});

