// JavaScript Document

<!--//--><![CDATA[//><!--

function GetPageID() {
	var path = document.location.href;
	if (path.indexOf("/ch/") > 0)
		return "ch";
	if (path.indexOf("/de/") > 0)
		return "de";
	if (path.indexOf("/en/") > 0)
		return "en";
	if (path.indexOf("/es/") > 0)
		return "es";
	if (path.indexOf("/fr/") > 0)
		return "fr";
	if (path.indexOf("/ja/") > 0)
		return "ja";
	if (path.indexOf("/po/") > 0)
		return "po";
	if (path.indexOf("/ru/") > 0)
		return "ru";
	if (path.indexOf("/sv/") > 0)
		return "sv";
	if (path.indexOf("/tu/") > 0)
		return "tu";
}	

startList = function() {
	var page_id = GetPageID();
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById(page_id);
		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", "");
				}
			}
		}
	}
}

window.onload=startList;

//--><!]]>
