<!-- hidevar versionNo = parseInt(navigator.appVersion)var timeIDif(versionNo > 3) {	// OPENS SELECTED MENU	function startIt(x,y,name) {  		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 54		if(isNS4) {			if(thisBox != showBox) {				nsObject = eval("document.layers[\"" + thisBox + "\"]")				nsObject.visibility = 'hide'						}			else {				nsObject = eval("document.layers[\"" + showBox + "\"]")				nsObject.visibility = 'show'				nsObject.top = 128				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 = 128 				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 = 128				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(name) {		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'			}		}	}}// -->