	jsHover2 = function() {
		if (document.getElementById("navleft")) {
			var hEls2 = document.getElementById("navleft");
			if (hEls2) {
				hEls2.onmouseover = function() {					this.className=this.className.replace("selected", "jshover2");
				}
				hEls2.onmouseout = function() {					this.className=this.className.replace("jshover2", "selected");
				}
			}
		}
	}
	if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover2);

	jsHover = function() {
		if (document.getElementById("sub-header-nav")) {
			var hEls = document.getElementById("sub-header-nav").getElementsByTagName("LI");
			if (hEls) {
				for (var i = 0, len = hEls.length; i < len; i++) {
					hEls[i].onmouseover = function() {
						this.className+=" jshover";
					}
					hEls[i].onmouseout = function() {
						this.className=this.className.replace(" jshover", "");
					}
				}
			}
		}
	}
	if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);

