// JavaScript Document



hoverFix = function() {

	if (document.all&&document.getElementById) {

		navRoot = document.getElementById("menus");

		for (i=0; i<navRoot.childNodes.length; i++) {

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

				node = navRoot.childNodes[i].childNodes[j];

				if (node.nodeName=="DIV") {

					if (node.className == "menuitem") {

						node.onmouseover=function() {

							this.className="menuitemhover";

						}

						node.onmouseout=function() {

							this.className="menuitem";

						}

					}

				}

			}

		}

	}

}
