<!--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/atlantaconnections/leftnav_home_off.GIF";
home_on = new Image( );
home_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_home_on.GIF";

sports = new Image( );
sports.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_sports_off.GIF";
sports_on = new Image( );
sports_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_sports_on.GIF";

attractions = new Image( );
attractions.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_attractions_off.GIF";
attractions_on = new Image( );
attractions_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_attractions_on.GIF";

theatre = new Image( );
theatre.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_theatre_off.GIF";
theatre_on = new Image( );
theatre_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_theatre_on.GIF";

hotels = new Image( );
hotels.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_hotels_off.GIF";
hotels_on = new Image( );
hotels_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_hotels_on.GIF";

shopping = new Image( );
shopping.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_shopping_off.GIF";
shopping_on = new Image( );
shopping_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_shopping_on.GIF";

guestbook = new Image( );
guestbook.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_guestbook_off.GIF";
guestbook_on = new Image( );
guestbook_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_guestbook_on.GIF";

aboutus = new Image( );
aboutus.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_aboutus_off.GIF";
aboutus_on = new Image( );
aboutus_on.src="../dsn/wwwatlantaconnectionscom/content/images/atlantaconnections/leftnav_aboutus_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"); }
}

