
startList = function() { 
	if (document.all && document.getElementById) { 
		navRoot = document.getElementById("navi-lang"); 
		for (i=0; i<navRoot.childNodes.length; i++) { 
			node = navRoot.childNodes[i]; 
			for (j=0; j<node.childNodes.length; j++) { 
				node2 = node.childNodes[i];
				if (node2.nodeName=="LI") { 
					node2.onmouseover=function() { 
						node2.className += " iehover"; 
					} 
					node2.onmouseout=function() { 
						node2.className = node.className.replace (" iehover", ""); 
					} 
				}
			} 
		} 
	} 
} 
