$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load

	if($(".toggle_container01")){	

		$(".toggle_container01").hide(); 

	

		//Switch the "Open" and "Close" state per click

		$("h2.trigger01").toggle(function(){

			$(this).addClass("active");

			}, function () {

			$(this).removeClass("active");

		});

	

		//Slide up and down on click

		$("h2.trigger01").click(function(){

			$(this).next(".toggle_container01").slideToggle("slow");

		});

	}
	
	
	//Hide (Collapse) the toggle containers on load

	if($(".toggle_container02")){	

		$(".toggle_container02").hide(); 

	

		//Switch the "Open" and "Close" state per click

		$("h2.trigger02").toggle(function(){

			$(this).addClass("active");

			}, function () {

			$(this).removeClass("active");

		});

	

		//Slide up and down on click

		$("h2.trigger02").click(function(){

			$(this).next(".toggle_container02").slideToggle("slow");

		});

	}
	
});








