startList = function() {
      if (document.all&&document.getElementById) {
            navRoot = document.getElementById("menu_list");
            for (i=0; i<navRoot.cells.length; i++) {
				node=navRoot.cells[i];
                if (this.className =="menu_top_razd")
		{}
		else{
		node.onmouseover=function() {
			                  
				this.className+=" act";
                	}
                	node.onmouseout=function() {
                  		this.className=this.className.replace(" act", "");
    	            	}
		}
                  }
		}
}
window.onload=startList;