function startList()
{
	if (document.getElementById)
	{
		navRoot = document.getElementById("languages");
		for (var i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName.toLowerCase() == "li")
			{
				node.onmouseover = function()
				{
					this.className += " over";
//					alert(this.className);
				}
				node.onmouseout = function()
				{
					this.className = this.className.replace(" over", "");
//					alert(this.className);
				}
			}
		}
	}
}

if (document.documentElement.toString() == '[object]')
window.onload = function() {
  startList();
}