$(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	if($(".toggle_container1")){	
		//$(".toggle_container").hide(); 
		$("h2.trigger1").addClass("active");
	
		//Switch the "Open" and "Close" state per click
		$("h2.trigger1").toggle(function(){
			$(this).removeClass("active");
			}, function () {
			$(this).addClass("active");
		});
	
		//Slide up and down on click
		$("h2.trigger1").click(function(){
			$(this).next(".toggle_container1").slideToggle("slow");
		});
	}
	
	if($(".toggle_container2")){	
		//$(".toggle_container").hide(); 
		$("h2.trigger2").addClass("active");
	
		//Switch the "Open" and "Close" state per click
		$("h2.trigger2").toggle(function(){
			$(this).removeClass("active");
			}, function () {
			$(this).addClass("active");
		});
	
		//Slide up and down on click
		$("h2.trigger2").click(function(){
			$(this).next(".toggle_container2").slideToggle("slow");
		});
	}
	
	if($(".toggle_container3")){	
		//$(".toggle_container").hide(); 
		$("h2.trigger3").addClass("active");
	
		//Switch the "Open" and "Close" state per click
		$("h2.trigger3").toggle(function(){
			$(this).removeClass("active");
			}, function () {
			$(this).addClass("active");
		});
	
		//Slide up and down on click
		$("h2.trigger3").click(function(){
			$(this).next(".toggle_container3").slideToggle("slow");
		});
	}
});




