window.onload = function() 
{
	var ULs=document.getElementsByName("left-submenu");
	for(j=0; j<ULs.length; j++) 
	{
		for (i=0; i<ULs[j].childNodes.length; i++) 
		{
			node = ULs[j].childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className="over";
				}
				node.onmouseout=function() 
				{
					this.className="";
				}
			}
		} 
	}
}