// JScript source code

function InitDynLiMenu()
{
	if (document.all&&document.getElementById) 
	{
		var navRoot = document.getElementById("ddMenu").firstChild;
		for (i=0; i<navRoot.childNodes.length; i++) 
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function() 
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

// Run only if Internet Explorer <= 6
if(window.navigator.appName.toLowerCase().indexOf("microsoft internet explorer") != -1)
{
	var appVersion = window.navigator.appVersion.toLowerCase();
	
	if(appVersion.indexOf("msie 5") != -1 || appVersion.indexOf("msie 6") != -1)
		window.attachEvent("onload", InitDynLiMenu); 
		
}

