$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	//$(".widget_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h2.widget_heading").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h2.widget_heading").click(function(){
		$(this).next(".widget_container").slideToggle("slow");
	});

});
