$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	
	$("h3.trigger:first").addClass("active");
	$(".toggle_container:not(:first)").hide(); 

		
	
	//Slide up and down on click
		$("h3.trigger").click(function(){
		$(".toggle_container").hide("slow");		
		
		$(this).next(".toggle_container").slideToggle("slow");

		$("h3.trigger").removeClass("active"); 
		$(this).addClass("active");
	});

});



