function openBrWindow(theURL) {
  window.open(theURL,'','status=yes,scrollbars=yes,resizable=yes,width=800,height=600');
}

start = function() {
	if (document.all&&document.getElementById) {
	sh = document.getElementById("theshadowproducts");
	sh.className = "ieshadowproducts"
	sh1 = document.getElementById("theshadowsupport");
	sh1.className = "ieshadowsupport"
	sh2 = document.getElementById("theshadowcompany");
	sh2.className = "ieshadowcompany"
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
					node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}

	}else
	{
		sh3 = document.getElementById("theshadowproducts");
		sh3.className = "shadowproducts";
		sh4 = document.getElementById("theshadowsupport");
		sh4.className = "shadowsupport";
		sh5 = document.getElementById("theshadowcompany");
		sh5.className = "shadowcompany";
	}
}
window.onload=start;

