    <!--//--><![CDATA[//><!--

    var isNav4, isIE4, isMac;
    if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
      isNav4 = (navigator.appName == "Netscape") ? true : false
      isNav6 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) == 5) ? true : false
      isIE4  = (navigator.appName.indexOf("Microsoft") != -1) ? true : false
      isMac  = (navigator.platform.indexOf("Mac") != -1) ? true : false
    }

    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.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
    }
    window.onload=startList;

    //--><!]]>
