// JavaScript Document
startList = function()
{
	if 
// IE fix
	((document.getElementById)
		||
// Konqueror Fix
		((navigator.vendor == 'KDE')||(document.childNodes)&&(!document.all)&&(!navigator.taintEnabled)))
	{
		var idArray = new Array("nav1", "nav2", "nav3");
		for(var x = 0; x < idArray.length; x++)
		{
			navRoot = document.getElementById(idArray[x]);
			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;