//This function is to fix IE inability to show hover class correctly.
startIt=function()
{
	if(document.all && document.getElementById)
	{
		var root=document.getElementById('navbuttons');
		
		//go through each of it's child nodes looking for li's
		for(i=0;i<root.childNodes.length;i++)
		{
			if(root.childNodes[i].nodeName=="LI")
			{
				root.childNodes[i].onmouseover=function()
				{
					this.className="over";
				}
				root.childNodes[i].onmouseout=function()
				{
					this.className="navgroup";
				}
			}
		}
	}
}

