startList = function() 
{
if (document.getElementById) {
navRoot = document.getElementById("menus");
for (i=0; i<navRoot.childNodes.length; i++)
{
 node = navRoot.childNodes[i];
 if (node.nodeName=="LI") 
  {
	    node.onmouseover=function() 
	    {
	     if(document.all) 
	     {
	       this.className+=" over";
	     } 
	    }
	    
       node.onmouseout=function() 
       {
	        if(document.all) 
	        {
	          this.className=this.className.replace(" over", "");
	        }
	       navRoot.onmouseover=function() 
	       {
	        if(!document.all) 
	        {
	                topBox = document.getElementById("topBox");
	                topBox.style.overflow='hidden';
	                 
	        }
	       }
	
	      navRoot.onmouseout=function() 
	      {
	        if(!document.all) 
	        {
	                topBox = document.getElementById("topBox");
	                topBox.style.overflow='auto';
	        }
	      }
       }
     }
   }
 }
}

window.onload=startList;

function popup(){
                javascript:NewWindow=window.open('register/reg1.php','newWin','width=500,height=500,left=100,top=40,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No');
                NewWindow.focus();
                void(0);
                return false;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
                          eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
                          if (restore) selObj.selectedIndex=0;
}
