 
<!--
var agt = navigator.userAgent.toLowerCase();
var appVer = navigator.appVersion.toLowerCase();
var is_safari = (agt.indexOf("safari") != -1);
var build = appVer.substring(appVer.lastIndexOf("/")+1);
build = build.substring(0,build.indexOf("."));
var ie = navigator.appName.toLowerCase().indexOf("explorer") != -1;
var pc = navigator.userAgent.toLowerCase().indexOf("windows") != -1;
var mac = navigator.platform.toLowerCase().indexOf("macppc") != -1; 

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

 else {
   function hideSelect() {
     if (ie && pc) {
       if (formObj = document.getElementById("NavHideSelectBox")) formObj.style.visibility = 'hidden';
     }
   }
   function showSelect() {
     if (ie && pc) {
       if (formObj = document.getElementById("NavHideSelectBox")) formObj.style.visibility = 'visible';
     }
   }
   
   startList = function() {
     if (document.all&&document.getElementById) {
       navRoot = document.getElementById("navcontainer");
       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", "");
	   }
	 }
       }
     }
   }
   setTimeout("startList()",2000);
   // if (window.attachEvent) window.attachEvent("onload", startList);
 }
-->
