$(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide();

	//Slide up and down & toogle the Class on click
	$("p.trigger").click(function(){
	$(this).next(".toggle_container").slideToggle("slow");
	});

});
