<!-- Beginning
    browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);

	if(browserVer >= 3) version = "n3";
	else version = "n2";

	if(version == "n3")
	{
		arImgSrc = new Array ("home1", "home2", "about1", "about2", 
							  "resev1", "resev2", "download1", "download2", 
							  "guest1", "guest2", "contact1", "contact2", 
							  "feedback1", "feedback2");

		arImgTxt = new Array ("","  Home",
							  "","  About",
							  "","  Online Reservation",
							  "","  Download   - wallpaper and screen saver -",
							  "","  Guest Book",
							  "","  Contact Us",
							  "","  Feedback");
		arImgList = new Array(40);

		for(counter in arImgSrc)
		{
			arImgList[counter] = new Image();
			arImgList[counter].src = "../images/" + arImgSrc[counter] + ".gif";
		}


	}

	function hilight(name, imNo) 
	{
        if (version == "n3") 
		{
            imNo=imNo-1;
            document.images[name].src = eval("arImgList["+imNo+"]" + ".src");
			if(imNo <= 14)
				window.status=arImgTxt[imNo];
        }
    }

// -->
							  
		
