navHover = function() {
	var sfEls = document.getElementById("ctlTabs_tblTopTabs").getElementsByTagName("TD");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" adminnavsel";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" adminnavsel\\b"), "");
		}
	}
	
		var sfEls = document.getElementById("ctlTabs_tblBottomTabs").getElementsByTagName("TD");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" adminnavsel";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" adminnavsel\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);