$(document).ready(function(){
	
	$(".toggle_container").hide();
	
	$("h2.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$(".toggle_container0").show();
	
	$("h2.triggera").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	
		
	});
	$("h2.triggera").click(function(){
		$(this).next(".toggle_container0").slideToggle("slow,");
	
		
	});
	
	});
