<!--

agent = navigator.userAgent;
browserVer = 0;
newBrowser = 0;

// Netscape 4+;  IE 4+ (Browsers that handle layers, cascading style sheets)
if (parseInt(navigator.appVersion) >= 4) { newBrowser = 1 }
// Check if Netscape browser
NetscapeBrowser = (navigator.appName == "Netscape");

if (parseInt(navigator.appVersion) >= 3) { browserVer = 1 } // Netscape 3+; IE 4+
ver5up = (parseInt(navigator.appVersion) >= 5); // True if Mozilla version 5+
ver4up = (parseInt(navigator.appVersion) >= 4); // True if Mozilla version 4+
ie5 = (agent.indexOf("MSIE 5") != -1);          // True if IE5
ie4 = (agent.indexOf("MSIE 4") != -1);          // True if IE4
ns4 = ((navigator.appName == "Netscape") && (agent.charAt(8) == 4));  // True if Netscape 4
ns6 = ((navigator.appName == "Netscape") && (agent.charAt(8) == 5));  // True if Netscape 6
opera = (agent.indexOf("Opera") != -1);          // True if Opera

if (browserVer == 1) {

   nav1_off = new Image();
   nav1_off.src = "/images/site_nav_why_off.jpg";
   nav1_on = new Image();
   nav1_on.src = "/images/site_nav_why_on.jpg";

   nav2_off = new Image();
   nav2_off.src = "/images/site_nav_become_off.jpg";
   nav2_on = new Image();
   nav2_on.src = "/images/site_nav_become_on.jpg";

   nav3_off = new Image();
   nav3_off.src = "/images/site_nav_find_off.jpg";
   nav3_on = new Image();
   nav3_on.src = "/images/site_nav_find_on.jpg";

   nav4_off = new Image();
   nav4_off.src = "/images/site_nav_contact_off.jpg";
   nav4_on = new Image();
   nav4_on.src = "/images/site_nav_contact_on.jpg";

   nav5_off = new Image();
   nav5_off.src = "/images/site_nav_terms_off.jpg";
   nav5_on = new Image();
   nav5_on.src = "/images/site_nav_terms_on.jpg";

   nav6_off = new Image();
   nav6_off.src = "/images/at_nav_contact_off.jpg";
   nav6_on = new Image();
   nav6_on.src = "/images/at_nav_contact_on.jpg";

// This is for the mouse over images
   nav7_off = new Image();
   nav7_off.src = "/images/site_submit.jpg";
   nav7_on = new Image();
   nav7_on.src = "/images/site_submit_on.jpg";
   nav8_off = new Image();
   nav8_off.src = "/images/site_application.jpg";
   nav8_on = new Image();
   nav8_on.src = "/images/site_application_on.jpg";

}

function changeImage(imgDocID,imgObjName) {
   if (browserVer == 1) { document.images[imgDocID].src = eval(imgObjName + ".src") }
}

// -->
