function openWindow(URL, width, height)
{
    Fenster = window.open(URL,'Zubehör',"scrollbars=no,status=no,menubar=no,resizable=no,location=no,toolbar=no,width=" + width + ",height=" + height);
	Fenster.focus();
}

startList = function() 
{
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("nav");
		for (i = 0; i < navRoot.childNodes.length; i++) 
		{
			node = navRoot.childNodes[i];
			if (node.childNodes[0] != null)
			{
				if (node.childNodes[0].childNodes[0].nodeName=="LI") 
				{
					node.childNodes[0].childNodes[0].onmouseover=function() 
													{
														this.className+=" over";
	  											}
	  			node.childNodes[0].childNodes[0].onmouseout=function() 
													{
	  												this.className=this.className.replace(" over", "");
	   											}
	   		}
			}
  	}
 	}
}

window.onload=startList;