startMenu = function()
  {
  if (document.all&&document.getElementById)
    {
    Links_Menu_friends_cssmenu = document.getElementById("Links_Menu_friends_csstopmenu");
    for (i=0; i<Links_Menu_friends_cssmenu.childNodes.length; i++)
	  {
      node = Links_Menu_friends_cssmenu.childNodes[i];
      if (node.nodeName=="LI")
	    {
        node.onmouseover=function()
		  {
          this.className+=" over";
          }
        node.onmouseout=function()
		  {
          this.className=this.className.replace(" over", "")
          }
        }
      }
    }
  }

if (window.attachEvent)
window.attachEvent("onload", startMenu)
else
window.onload=startMenu;
