stupidiemac = ((navigator.userAgent.indexOf('MSIE 5.2') != -1)&&(navigator.userAgent.indexOf('Mac') != -1));
mkCls = function() {
	if((document.all&&document.getElementById) || stupidiemac){
		navRoot = document.getElementById("mainnav");
		theselectboxes = document.getElementsByTagName("select");
		selectstohide = new Array();
		j=0;
		for(i=0; i<theselectboxes.length; i++){
			if((findPosY(theselectboxes[i]) < 420) && (findPosX(theselectboxes[i]) < 575)){
				selectstohide[j] = theselectboxes[i];
				j++;
			}
		}
		for(i=0; i<navRoot.childNodes.length; i++){
			node = navRoot.childNodes[i];
			if(node.nodeName=="LI"){
				node.onmouseover=function(){
					this.className+="over";
					for(wha=0; wha<selectstohide.length; wha++){
						thewhnode = selectstohide[wha];
						thewhnode.style.visibility = "hidden";
					}
				}
				node.onmouseout=function(){
					this.className=this.className.replace("over", "");
					for(wha=0; wha<selectstohide.length; wha++){
						thewhnode = selectstohide[wha];
						thewhnode.style.visibility = "visible";
					}
				}
			}
		}
	}
}
MM_openBrWindow = function(theURL,winName,features) {
	window.open(theURL,winName,features);
}
initpage = function() {
	mkCls();
}
window.onload = initpage;