loadTopMenu = function() 
{ 
if (document.all&&document.getElementById) 
 {  
  menunavParent = document.getElementById("menuF"); 
   for (x=0; x < menunavParent.childNodes.length; x++) 
     {  
        menunode = menunavParent.childNodes[x];
   
           if (menunode.nodeName=="LI") 
             {   
              menunode.onclick=function() 
                {   
					this.className+=" over";   
                }   
           }
        }
     }
}

window.onload=loadTopMenu;