$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$("#toggle_com").hide(); 
	$("#toggle_res").hide(); 
	$("#toggle_spec").hide(); 


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

});

