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

	$("h2.expand_heading").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.expand_heading").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});
	$(".expand_all").toggle(function(){
		$(this).addClass("expanded"); 
		}, function () {
		$(this).removeClass("expanded");
	});
	$(".expand_all").click(function(){
		$(".toggle_container").slideToggle("slow,");
	});


});