$(document).ready(function(){
	
	$(".toggle_container1, .toggle_container2").hide();

	$("h2.trigger1, h2.trigger2").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.trigger1, h2.trigger2").click(function(){
		$(this).next(".toggle_container1, .toggle_container2").slideToggle("slow,");
	});

});