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

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("h5.trigger").click(function(e){
		e.preventDefault(); //Prevent the browser jump to the link anchor
		$(this).toggleClass("active").next().slideToggle("slow");
	});
});
