var agt = navigator.userAgent.toLowerCase();
var appVer = navigator.appVersion.toLowerCase();
var is_safari = (agt.indexOf("safari") != -1);
var build = appVer.substring(appVer.lastIndexOf("/")+1);
var wp_ie = navigator.appName.toLowerCase().indexOf("explorer") != -1;
var wp_pc = navigator.userAgent.toLowerCase().indexOf("windows") != -1;
var wp_mac = navigator.platform.toLowerCase().indexOf("macppc") != -1; 

if (wp_mac && (wp_ie || (is_safari && !(build>86)))) {
	document.write('<style type="text/css">div.MenuItem:hover table, div.over table {display:none !important;}</style>'); 
}

else {
	function hideSelect() {
		if (wp_ie && wp_pc) {
		if (formObj = document.getElementById("NavHideSelectBox")) formObj.style.visibility = 'hidden';
		}
	}
	function showSelect() {
		if (wp_ie && wp_pc) {
		if (formObj = document.getElementById("NavHideSelectBox")) formObj.style.visibility = 'visible';
		}
	}

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("MenuBar");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="DIV") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
				node.onclick=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
  }
  document.getElementById("StandByBar").style.display = "none";
}
setTimeout("startList()",1000);
// if (window.attachEvent) window.attachEvent("onload", startList);
}

