JQ(document).ready(function () {

	JQ(".toggle_container").hide();

	
	JQ("h3.trigger").toggle(function(){
		JQ(this).contents(".symbol").addClass("active");
		JQ(this).addClass("bianco");
		JQ(this).next(".toggle_container").slideToggle("slow,"); 
		JQ(this).closest(".show_news").addClass("con_sfondo");
		
		
		}, function () {
		JQ(this).contents(".symbol").removeClass("active");
		JQ(this).removeClass("bianco");
		JQ(this).next(".toggle_container").slideToggle("slow,"); 
		JQ(this).closest(".show_news").removeClass("con_sfondo");

	});


});