
$(document).ready(function(){ 
	
	//PNG FIX
	$(document).pngFix();			

	
	//EXPAND COLLAPSE
	$(".toggle_container").hide();
	
	$("h2.expand_heading").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.expand_heading_open").toggle(function(){
		 $(this).removeClass("active");
		}, function () {
		
		$(this).addClass("active");
	});
	
	$("h2.expand_heading").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});
	$("h2.expand_heading_open").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");
	});
	*/
	
	//Default Open Container
	$(".open").slideToggle("slow");
	
}); 
