<!-- hide// MENUS BY NIGEL, UW PUBLICATIONS SERVICESvar timeIDvar versionNo = parseInt(navigator.appVersion)if(versionNo > 3) {	// WE HAVE A WINNER		// OPENS SELECTED MENU	function startIt(x,y) {		clearTimeout(timeID)  //KILLS KILL		var showBox = "box" + x		var fromLeft = y		if(document.layers){var isNS4 = true;}		else if(document.all && !document.getElementById){var isIE4 = true;}		else if(document.all && document.getElementById){var isIE5 = true;}		else if(!document.all && document.getElementById){var isNS6 = true;}		//-- 6 is the number of menus		for (var i=1; i <= 6; i++) {		var thisBox = "box" + i				// IF NETSCAPE 4		if(isNS4) {			if(thisBox != showBox) {				nsObject = eval("document.layers[\"" + thisBox + "\"]")				nsObject.visibility = 'hide'				}			else {				nsObject = eval("document.layers[\"" + showBox + "\"]")				nsObject.visibility = 'show'				nsObject.top = 139				nsObject.left = fromLeft				}  			}				// IF INTERNET EXPLORER		else if(isIE4 || isIE5) {			if(thisBox != showBox) {				ieObject = eval("document.all." + thisBox)				ieObject.style.visibility = 'hidden'								}			else {				ieObject = eval("document.all." + showBox)				ieObject.style.visibility = 'visible'				ieObject.style.pixelTop = 139 				ieObject.style.pixelLeft = fromLeft				}			}				// IF NETSCAPE 6		else if(isNS6) {			if(thisBox != showBox) {				nsObject = eval("document.getElementById('" + thisBox + "').style")				nsObject.visibility = 'hidden'				}			else {				nsObject = eval("document.getElementById('" + showBox + "').style")				nsObject.visibility = 'visible'				nsObject.top = 139				nsObject.left = fromLeft				}			}		}				// ANY MORE OBJECT DEFINITIONS? -> Function = screw_em()				// FINALLY, KILLS MENU IF NO FOCUS		timeID = setTimeout("stopIt()", "4000")	}		// KEEPS MENU ALIVE	function live() {		clearTimeout(timeID)		}					// STARTS TO KILL MENU	function die() {		timeID = setTimeout("stopIt()", "1000")		}			// THIS FUNCTION KILLS ALL MENUS	function stopIt() {		if(document.layers){var isNS4 = true;}		else if(document.all && !document.getElementById){var isIE4 = true;}		else if(document.all && document.getElementById){var isIE5 = true;}		else if(!document.all && document.getElementById){var isNS6 = true;}				//-- 6 is the number of menus		var items = 6		for (var i=1; i <= items; i++) {			if(isNS4) {				nsObject = eval("document.layers[\"box" + i + "\"]")				nsObject.visibility = 'hide'			}			else if(isIE4 || isIE5) {					ieObject = eval("document.all.box" + i)				ieObject.style.visibility = 'hidden'			}			else if (isNS6) {				nsObject = eval("document.getElementById('box" + i + "').style")				nsObject.visibility = 'hidden'			}		}	}}// -->