// jquery toggle

$(document).ready(function(){

	// hide (collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	// switch the "open" and "close" state per click
	$(".trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	// slide up and down on click
	$(".trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});

});