	/*
	sfHover = function() {
	var sfEls = document.getElementById("buttonwide").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);	
	*/
	var gHide = new Array(); 
	
	
	startList = function() {
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("nav");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI" && node.className == "topMenu") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					
					node.onmouseout=function() {					
						gHide.push(this);
						
						setTimeout("waitToHide()",500);
					}
					
				}
			}
		}
	}
	
	var browser = new BrowserDetect();
	
	if ((browser.isIE5x) && (browser.isMac)) {

	} else if (browser.isIE) {
		window.attachEvent("onload", startList);
	}
	/*
	if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) {
		window.attachEvent("onload", alphaBackgrounds);
	}
		*/
	function waitToHide() {
		gHide[0].className=gHide[0].className.replace(" over", "");
		gHide.shift();
	}
	
