// MENU HOVER



navHover = function() {

	var lis = document.getElementById("navmenu-h").getElementsByTagName("LI");

	for (var i=0; i<lis.length; i++) {

		lis[i].onmouseover=function() {

			this.className+=" iehover";

		}

		lis[i].onmouseout=function() {

			this.className=this.className.replace(new RegExp(" iehover\\b"), "");

		}

	}

}

if (window.attachEvent) window.attachEvent("onload", navHover);



// Statusbar Message



window.defaultStatus="Rhino Sports Inc. | 15029 N. 74th Street, Scottsdale, AZ 85260 | 800-585-0922"; 

function chgWStat() { 

var el=window.event.srcElement; 

if(el.tagName=="A")window.status="go to " + el.innerText + "Web site"; 

/* el.status=el.innerText; */ 

}