// JavaScript Document

checkLI = function(x)
	{
	if (x == null)
		return;
		
	checkLI(x.firstChild);
	
	if (x.nodeName=="LI") 
		{
		x.onmouseover=function() 
			{
			this.className+=" over";
			}
		x.onmouseout=function() 
			{
			this.className=this.className.replace(" over", "");
			}
		}
		
	checkLI(x.nextSibling);
		
	}

startList = function() 
{
// document.all is an IE only tag
if (document.all&&document.getElementById) 
	{		
	navRoot = document.getElementById("mainmenu");
	
	checkLI(navRoot);
	}
}
