<!--- hide script from old browsers
// browser test:
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if (browserName == "Netscape" && browserVer >= 3) 
	version = "1";
else 
	version = "2";
if (browserVer > 3) 
	version = "1";
else 
	version = "2";

// preload images:
if (version == "1") 
{
	button1 = new Image(101,28);
	button1.src = "buttons/stay.gif";

	button1on = new Image(101,28);
	button1on.src = "buttons/stay_on.gif";

	button2 = new Image(83,28);
	button2.src = "buttons/play.gif";

	button2on = new Image(83,28);
	button2on.src = "buttons/play_on.gif";

	button3 = new Image(84,28);
	button3.src = "buttons/eat.gif";

	button3on = new Image(84,28);
	button3on.src = "buttons/eat_on.gif";

	button4 = new Image(84,28);
	button4.src = "buttons/shop.gif";

	button4on = new Image(84,28);
	button4on.src = "buttons/shop_on.gif";

	button5 = new Image(86,28);
	button5.src = "buttons/live.gif";

	button5on = new Image(86,28);
	button5on.src = "buttons/live_on.gif";

	button6 = new Image(101,28);
	button6.src = "buttons/pray.gif";

	button6on = new Image(101,28);
	button6on.src = "buttons/pray_on.gif";

	button7 = new Image(83,28);
	button7.src = "buttons/weather.gif";

	button7on = new Image(83,28);
	button7on.src = "buttons/weather_on.gif";

	button8 = new Image(84,28);
	button8.src = "buttons/calendar.gif";

	button8on = new Image(84,28);
	button8on.src = "buttons/calendar_on.gif";

	button9 = new Image(84,28);
	button9.src = "buttons/classifieds.gif";

	button9on = new Image(84,28);
	button9on.src = "buttons/classifieds_on.gif";

	button10 = new Image(86,28);
	button10.src = "buttons/businesses.gif";

	button10on = new Image(86,28);
	button10on.src = "buttons/businesses_on.gif";

	button11 = new Image(86,28);
	button11.src = "buttons/community.gif";

	button11on = new Image(86,28);
	button11on.src = "buttons/community_on.gif";
}

function hiLite(imgDocID,imgObjName) 
{
	if (version == "1") 
	{
		document.images[imgDocID].src = eval(imgObjName + ".src")
	}
}

//end hiding --->