startList = function() 
{
  if (document.all && document.getElementById) 
  {
    navRoot = document.getElementById("categ2");
    
    for (i=0; i<navRoot.childNodes.length; i++) 
    {
      node0 = navRoot.childNodes[i];
      for (j=0; j<node0.childNodes.length; j++)
      {
      	//alert (j+node0.nodeName+node0.childNodes[j].childNodes.length);
      	if (node0.nodeName=="TBODY") 
        {
      	  subnode = node0.childNodes[j];
      	  subnode.onmouseover=function() { this.className+=" over"; }
          subnode.onmouseout=function() { this.className=this.className.replace (" over", ""); }
      	  trid = subnode.getAttribute("id");
      	  if(trid!="naviactiv" && trid!="navinotactiv") { continue; }
      	  //alert(subnode.nodeName+" "+trid);
      	  
          for (k=0; k<subnode.childNodes.length; k++)
      	  {
      	  	subsubnode = subnode.childNodes[k];
      	  	subsubnode.onmouseover=function() { this.className+=" over"; } // window.status=this.nodeName+" "+this.className;
            subsubnode.onmouseout=function() { this.className=this.className.replace (" over", ""); } // window.status = this.nodeName+" "+this.className;
            //alert(j+" "+k+" "+subsubnode.nodeName+" "+subsubnode.getAttribute("class"));
      	  }
        }
      }
    }
  }
}
window.onload=startList;