// JavaScript Document

<!--
Hover = function() {
	var subMenu = document.getElementById("productNav").getElementsByTagName("li");
	for (var i=0; i<subMenu.length; i++) {
		subMenu[i].onmouseover=function() {
			this.className+=" Hover";
		}
		subMenu[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" Hover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", Hover);
//-->


