
$(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide();
	
	//Slide up and down & toogle the Class on click
	$('h2.trigger').click(function(){
		
		$(".toggle_container").hide();
		$(this).nextAll(".toggle_container").slideToggle("slow");
	});

});