navHover = function() {
	var lis = document.getElementById("globalnav").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);


try {  document.execCommand('BackgroundImageCache', false, true);} catch(e) {}

<!--
function openScript(url, width, height) {
        var Win = window.open(url,"newWindow",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,status=no,toolbar=no,top=50,left=20' );
				if (! window.focus) {Win.focus()}

}
//-->