$(document).ready(function(){
	
	$(".more").hide();

	$(".trigger").css("cursor","pointer").toggle(function(){
		$(this).addClass("attivo"); 
		}, function () {
		$(this).removeClass("attivo");
	});
	
	$(".trigger").click(function(){
		$(this).next(".more").slideToggle("fast");
	});

});


