// JavaScript Document
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementsByTagName("td");

		for (i=0; i<navRoot.length; i++) {
			node = navRoot[i];

			if (node.className=="menu0") {
				node.onmouseover=function() {
					this.className+="_over";
		 		 }
			  	node.onmouseout=function() {
				  this.className=this.className.replace("_over", "");
			   }
		   }
		}
	 }
}
window.onload=startList;