$(function(){

	//Hide (Collapse) the toggle containers on load
	$(".toggleContainer").hide(); 

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

});
