// loads the homepage flash once the page has loaded
// this should keep the page load times down

function  loadBottomFlash() {
	var elementID = "bottomFlashCTA";
	if(document.getElementById(elementID)){
		var flashvars = {};
		var params = {
			wmode: "transparent"
		};
		var attributes = {};
		swfobject.embedSWF("/flash/top-cta.swf", elementID, "244", "117", "9.0.0","expressInstall.swf", flashvars, params, attributes);
		//mouseover event is required for FF click to activate bug when scrolling window
		document.getElementById(elementID).onmouseover = function() {
			this.style.backgroundImage = "url(/images/transparent.gif)";
			setTimeout('revertBg("'+this.getAttribute("id")+'")',1);
		}
	}
}

addLoadEvent(loadBottomFlash);
