<!--
function menuStart() {
	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() {
			/*var nVer = navigator.appVersion;
          var nAgt = navigator.userAgent;
          var browserName  = '';
          var fullVersion  = 0; 
          var majorVersion = 0;  
          if ((verOffset=nAgt.indexOf("MSIE"))!=-1)
          {
           browserName  = "IE";
           fullVersion  = parseFloat(nAgt.substring(verOffset+5));
           majorVersion = parseInt(''+fullVersion);
          }
          if ((browserName=="IE") && majorVersion<7)
          {
          	var s1=$('ctl0_main_RName');
          	var s2=$('ctl0_main_InstructionDropdown');
            if (s1) s1.className+=" hide";
            if (s2) s2.className+=" hide";
          }*/
					this.className+=" over";
				  }
				node.onmouseout=function() {
				  /*var s1=$('ctl0_main_RName');
				  var s2=$('ctl0_main_InstructionDropdown');
					if (s1) s1.className=s1.className.replace(" hide","");
					if (s2) s2.className=s2.className.replace(" hide","");*/
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
//-->

