$(document).ready(function(){
//Hide (Collapse) the toggle containers on load
$(".toggle_container").hide(); 

//Slide up and down & toogle the Class on click
$(".trigger").click(function(){
$(this).toggleClass("active").next(".toggle_container").slideToggle("slow");
});

});

//http://www.sohtanaka.com/web-design/easy-toggle-jquery-tutorial/

//$(document).ready(function(){
//
//	//Hide (Collapse) the toggle containers on load
//	$(".toggle_container").hide(); 
//
//	//Switch the "Open" and "Close" state per click
//	$(".trigger").toggle(function(){
//		$(this).addClass("active");
//		}, function () {
//		$(this).removeClass("active");
//	});
//
//	//Slide up and down on click
//	$(".trigger").click(function(){
//		$(this).next(".toggle_container").slideToggle("slow");
//	});
//
//});