// JavaScript Document

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".acc_container").hide(); 
	$('.acc_trigger:first').addClass('active').next().hide(); //Add "active" class to first trigger, then show/open or hide/close the immediate next container.  to make the first item remain closed upon opening the webpage, replace the ".show" with ".hide"

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

});
