// JavaScript Document
<!--//
function initSite()
{
	try
	{
		initMenu()
	}
	catch(e){}
	startList;
}

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navListTM");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName == "LI") {
				this.className = " out";
				node.onmouseover = function() {
				this.className = this.className.replace(" out", "");
					this.className+=" over";
				}
				node.onmouseout = function() {
					this.className = this.className.replace(" over", "");
					this.className += " out";
				}
			}
		}
	}
}

//window.onload=startList;
window.onload=startList;
//-->