$(function(){
	$(document).pngFix();
	$('#searchfrm #search').blur(function() {if(!$(this).val()){$(this).val('Search');}});
	$('#searchfrm #search').focus(function() {if($(this).val() == 'Search'){$(this).val('');}});   
   	$(".MegaMenuLink").megamenu(".MegaMenuContent");
	
	//toggle for the mortgage housing reports
	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("p.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
});
