var logo_flashvars		= {};
var logo_params 			= {};
var logo_attributes 	= {};

logo_params.wmode = "transparent";

swfobject.embedSWF(siteRoot + "/!images/logo.swf", 
									 "logo", 
									 "290", 
									 "260", 
									 "8.0.0",
									 siteRoot + "/!images/expressInstall.swf", 
									 logo_flashvars, 
									 logo_params, 
									 logo_flashvars);

var featuredimage_flashvars		= {};
var featuredimage_params 			= {};
var featuredimage_attributes 	= {};

featuredimage_params.wmode = "transparent";

swfobject.embedSWF(siteRoot + "/!images/featureImage-" + featureImageFlash + ".swf", 
									 "featureImage", 
									 "327", 
									 "450", 
									 "8.0.0",
									 siteRoot + "/!images/expressInstall.swf", 
									 featuredimage_flashvars, 
									 featuredimage_params, 
									 featuredimage_flashvars);


sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);