   jshover = function() {
				var hEls = document.getElementById("menutable").getElementsByTagName("td");
				for (var i=0, len=hEls.length; i<len; i++) {
					hEls[i].onmouseover=function() {
						if (document.all) {
							this.className+=" jsover";
						}
					};
					hEls[i].onmouseout=function() {
						if (document.all) {
							this.className=this.className.replace(" jsover", " ");
						}
					}
					
				}
			}
   jshover2 = function() {
				var hEls = document.getElementById("menutable").getElementsByTagName("li");
				for (var i=0, len=hEls.length; i<len; i++) {
					hEls[i].onmouseover=function() {
						if (document.all) {
							this.className+=" jsover";
						}
					};
					hEls[i].onmouseout=function() {
						if (document.all) {
							this.className=this.className.replace(" jsover", " ");
						}
					}
					
				}
			}

