$(document).ready(function(){
	$('.toggle_container').hide();

	
	$('h2.trigger').click(function(){	

	  $(this).next(".toggle_container").slideToggle("slow")
	  .siblings(".toggle_container:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings("h2.trigger").removeClass("active");
		return false;

	});

});
