<!--//--><![CDATA[//><!--


startList = function()
{

	if (document.all&&document.getElementById)
	{
		navRoot = document.getElementById("nav");
		
		for (l=0; l<navRoot.childNodes.length; l++)
		{
			node = navRoot.childNodes[l];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
		
	}
	
}

currentNav = function()
{

	if (currentId != "noCurrent")
	{
		var ele = document.getElementById(currentId);
		ele.className = 'current';
		
		if(currentId2!="noCurrent")
		{
			var ele = document.getElementById(currentId2);
			ele.className = 'current2';
		}
		
	}
	
startList();

}


window.onload=currentNav;



//--><!]]>