   			jshover = function() {
				var hEls = document.getElementById("top-list").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", " ");
						}
					}
					
				}
			}
			if (window.attachEvent) { window.attachEvent("onload", jshover); }
		   jshover2 = function() {
				var hEls = document.getElementById("catalog").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", " ");
						}
					}
					
				}
			}
			if (window.attachEvent) { window.attachEvent("onload", jshover2); }

