startList = function()
{
	if (document.getElementById)
	{
		var uA = navigator.userAgent;
		var browserType = "unknown";
		if (uA.indexOf("Opera") > -1)
		{
			browserType = "Opera";
		}
		else if (uA.indexOf("Safari") > -1)
		{
			browserType = "Safari";
		}
		else if (uA.indexOf("Konqueror") > -1)
		{
			browserType = "Konqueror";
		}
		else if (uA.indexOf("Gecko") > -1)
		{
			browserType = "Mozilla";
		}
		else if (uA.indexOf("MSIE") > -1)
		{
			browserType = "Internet Explorer";
		}
	
		navRoot = document.getElementById("nav");
		for(i = 0; i < navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if(node.nodeName == "LI")
			{
				node.style.zIndex = 100000-i;
				node.childNodes[2].className = "hidden";
	
				if(browserType == "Internet Explorer")
				{
					node.childNodes[2].style.width = node.offsetWidth;
				}
	
				node.onmouseover = function()
				{
					if(this.className == "" || this.className == null || this.className == "undefined")
					{
						this.className += "over";
					}
					else
					{
						this.className += " over";
					}
				}
				node.onmouseout = function()
				{
					this.className = this.className.replace("over", "");
				}
				/*
				node.onkeypress = function()
				{
					this.className += "over";
				}
				*/
			}
		}
	}
}