startList = function(rootId) {
	if (document.all&&document.getElementById) {
	navRoot = document.getElementById(rootId);
	for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {
	node.onmouseover=function() {
		if(this.className == "sel") { 
			this.className="hoversel";
		} else {
			this.className="hover";
		}
	  }
	  node.onmouseout=function() {
	  	if(this.className == "hoversel") {
			this.className=this.className.replace("hoversel", "sel");
		} else {
			this.className=this.className.replace("hover", "");
		}
	   }
	   }
	  }
	 }
	}
	window.onload = function(e)
	{
		
	}