// JavaScript Document

var is=new function()
{
   this.VER=navigator.appVersion;
   this.AGENT=navigator.userAgent;
   this.DOM=(document.getElementById)?1:0;
   this.IE4=(document.all&&!this.DOM)?1:0;
   this.IE5=(this.VER.indexOf("MSIE 5")>-1&&this.DOM)?1:0;
   this.IE6=(this.VER.indexOf("MSIE 6")>-1&&this.DOM)?1:0;
   this.IE=(this.IE4||this.IE5||this.IE6)?1:0;
   this.MAC=this.AGENT.indexOf("Mac")>-1;
   this.NS6=(document.getElementById&&!document.all)?1:0;
   this.NS4=(document.layers&&!this.DOM)?1:0;
   this.NS=(this.NS6||this.NS4)?1:0;
   this.OPERA=this.AGENT.indexOf("Opera")>-1;
   return this;
}
function getElement(id)
{
   if(is.DOM)
   {
      return document.getElementById(id);
   }
   else if(is.IE)
   {
      return eval("document.all."+id);
   }
   else if(is.NS)
   {
      return eval("document."+id);
   };
}





	startList = function() {
		if (document.all&&document.getElementById) {
			navRoot = getElement("MenuList");
			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;