/**
* This function fixes the li:hover in IE for the dynamic menu's
*/

startList = function()
{
  if(document.all && document.getElementById)
	{
		navRoot = document.getElementById("nav");
		nodelist = navRoot.getElementsByTagName("LI");
		for(i=0; i<nodelist.length; i++)
		{
  		nodelist[i].onmouseover=function()
  		{
  			this.className="over";
  		}
  		nodelist[i].onmouseout=function()
  		{
  			this.className=this.className="";
  		}
		}
	}
}

window.onload=startList;

