<!--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/giftshowhotels/giftshow_home_off.GIF";
home_on = new Image( );
home_on.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_home_on.GIF";

aboutus = new Image( );
aboutus.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_aboutus_off.GIF";
aboutus_on = new Image( );
aboutus_on.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_aboutus_on.GIF";

calendar = new Image( );
calendar.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_calendar_off.GIF";
calendar_on = new Image( );
calendar_on.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_calendar_on.GIF";

giftshows = new Image( );
giftshows.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_giftshows_off.GIF";
giftshows_on = new Image( );
giftshows_on.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_giftshows_on.GIF";

hotelinfo = new Image( );
hotelinfo.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_hotelinfo_off.GIF";
hotelinfo_on = new Image( );
hotelinfo_on.src="../dsn/wwwatlantaconnectionscom/content/images/giftshowhotels/giftshow_hotelinfo_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"); }
}


