$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	 
	$(".toggle-collapsible").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$(".trigger-collapsible" ).click(function(){
		$(this).toggleClass("active").next().slideToggle(0);
		$(".toggle-collapsible").slideToggle(0);
		return false; //Prevent the browser jump to the link anchor
	});

        //Hide (Collapse) the toggle containers on load
	 
	$(".toggle-collapsible2").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$(".trigger-collapsible2" ).click(function(){
		$(this).toggleClass("active").next().slideToggle(0);
		$(".toggle-collapsible2").slideToggle(0);
		return false; //Prevent the browser jump to the link anchor
	});
	
});
