var t;
$(document).ready(function(){
$(".toggle_container").hide();
$(".expand_heading").toggle(function(){
	$(this).addClass("active"); 
		}, function () {
			$(this).removeClass("active");
});
$(".expand_heading").mouseover(function(){
	$(this).next(".toggle_container").slideDown("slow");
});
$(".toggle_container").mouseout(function(){
	$(".toggle_container").slideUp("slow");
	});
});
