
		function ExplorerFix() {
			for (a in document.links) document.links[a].onfocus = document.links[a].blur;
		}

		if (document.all) {
			document.onmousedown = ExplorerFix;
		}

		if (document.images) {

			// Cache images

			pic1_on = new Image();
			pic1_on.src = "images/home_hover.gif";
			pic1_off = new Image();
			pic1_off.src = "images/home.gif";

			pic2_on = new Image();
			pic2_on.src = "images/about_hover.gif";
			pic2_off = new Image();
			pic2_off.src = "images/about.gif";

			pic3_on = new Image();
			pic3_on.src = "images/infiniti_hover.gif";
			pic3_off = new Image();
			pic3_off.src = "images/infiniti.gif";

			pic4_on = new Image();
			pic4_on.src = "images/reservations_hover.gif";
			pic4_off = new Image();
			pic4_off.src = "images/reservations.gif";
		}

		function imgOn(imgName) {
			if (document.images) {
				document[imgName].src = eval(imgName + "_on.src");
			}
		}

		function imgOff(imgName) {
			if (document.images) {
				document[imgName].src = eval(imgName + "_off.src");
			}
		}


		function zoom(imageName) {
			if (document.all || document.getElementById) {
				var xMax = screen.width;
				var yMax = screen.height;
			}
			else if (document.layers) {
				var xMax = window.outerWidth; 
		    		var yMax = window.outerHeight;
			}
			else {
				var xMax = 800;
				var yMax=600;
			}

			var xOffset = (xMax - 500)/2, yOffset = (yMax - 450)/2;
			imgWin = window.open('xlimage4bb4.html?image=' + imageName,'imgWin',config='width=500,height=450,resizable=yes,scrollbars=yes,toolbar=no,status=no,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
			imgWin.focus();
		}

