startList = function()
{
	if (document.all && document.getElementById)
	{
		navRoot = document.getElementById("ctl00_ulNav"); 

		if(navRoot == null)
		{
			return;
		}

		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];

			node.onmouseover = function()
			{
				this.className = "liOver";
			}

			node.onmouseout = function()
			{
				this.className = "";
			}
		}
	}
}

window.onload = startList;