<!--variables for testing javascript compatability-->

var strN = "Netscape";
var strIE = "Microsoft Internet Explorer";
var Name = navigator.appName;
var Ver = parseInt(navigator.appVersion);
var bVer = ( (Name==strN && Ver >= 3) || (Name==strIE && Ver >= 4) );

<!--images for mouseover events-->

home = new Image( );
home.src="../dsn/wwwatlantaconnectionscom/content/images/gatechhotels/leftnav_home_off.GIF";
home_on = new Image( );
home_on.src="../dsn/wwwatlantaconnectionscom/content/images/gatechhotels/leftnav_home_on.GIF";

home = new Image( );
home.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_home_off.GIF";
home_on = new Image( );
home_on.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_home_on.GIF";

aboutus = new Image( );
aboutus.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_aboutus_off.GIF";
aboutus_on = new Image( );
aboutus_on.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_aboutus_on.GIF";

hotels = new Image( );
hotels.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_hotels_off.GIF";
hotels_on = new Image( );
hotels_on.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_hotels_on.GIF";


schedule = new Image( );
schedule.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_schedule_off.GIF";
schedule_on = new Image( );
schedule_on.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_schedule_on.GIF";

information = new Image( );
information.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_information_off.GIF";
information_on = new Image( );
information_on.src="../dsn/wwwatlantaconnectionscom/content/images/equestriantravel/leftnav_information_on.GIF";


<!--onMouseOver function/handler-->

function in_image(image_Name) {
	if (bVer) { document [image_Name].src = eval(image_Name + "_on.src"); }
}

<!--onMouseOut function/handler-->

function out_image(image_Name) {
        if (bVer) { document [image_Name].src = eval(image_Name + ".src"); }
}


