ielist = function() {	if (document.getElementById("maincol")) {		var sfEls = document.getElementById("maincol").getElementsByTagName("tr");		for (var i=0; i<sfEls.length; i++) {			sfEls[i].onmouseover=function() {				this.className+=" ielist";			}			sfEls[i].onmouseout=function() {				this.className=this.className.replace(new RegExp(" ielist\\b"), "");			}		}	}	if (document.getElementById("lister")) {		var L = document.getElementById("lister").getElementsByTagName("div");		for (var i=0; i<L.length; i++) {			L[i].onmouseover=function() {				this.className+=" ielist";			}			L[i].onmouseout=function() {				this.className=this.className.replace(new RegExp(" ielist\\b"), "");			}		}	}}if (window.attachEvent) window.attachEvent("onload", ielist);