$(document).ready(function(){

	$(".toggle_container").hide();

	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});

});
