/*
'-----------------------------------------------------------------------------------------
' Title			: Layout:home specific scripts
' Description	: This page adds all client-side scripting to the home layout
'-----------------------------------------------------------------------------------------
' History
' 03/14/2008 	: DPE - Created file
'-----------------------------------------------------------------------------------------
*/


$(document).ready(function() {
	
	// Fills-out the footer background image on the homepage
	adjustFooterWrap();
		
	// replaces any the #topCat heading with Flash text
	if(typeof sIFR == "function"){
	    sIFR.replaceElement("#welcomeTitle", named({sFlashSrc:"/include/site/multimedia/swf/erasMediumITC.swf", sColor:"#EBE1BA",sFlashVars:"textalign=left", sWmode:"transparent"}));
	};
	
	$('#homeAd').cycle({
		timeout: 5000,
		pause: true,
		random: 1
	}); 

	
});

function adjustFooterWrap() {
	var footerWrapHeight = screen.height - 80 - document.body.offsetHeight;
	$('#footerWrap').css("height",footerWrapHeight);
	
}
