


//navigation rollover functions

browser = 
    (((navigator.appName == "Netscape") && 
     (parseInt(navigator.appVersion) >= 3 )) || 
    ((navigator.appName == "Microsoft Internet Explorer") && 
     (parseInt(navigator.appVersion) >= 4 )))

browser == true;
if (browser){
  about_on = new Image();
  about_on.src = "home_images/nav_about_on.gif";
  about_out = new Image();
  about_out.src = "home_images/nav_about_out.gif";

  services_on = new Image();
  services_on.src = "home_images/nav_services_on.gif";
  services_out = new Image();
  services_out.src = "home_images/nav_services_out.gif";

  employers_on = new Image();
  employers_on.src = "home_images/nav_employers_on.gif";
  employers_out = new Image();
  employers_out.src = "home_images/nav_employers_out.gif";

  contact_on = new Image();
  contact_on.src = "home_images/nav_contact_on.gif";
  contact_out = new Image();
  contact_out.src = "home_images/nav_contact_out.gif";

  privacy_on = new Image();
  privacy_on.src = "home_images/nav_privacy_on.gif";
  privacy_out = new Image();
  privacy_out.src = "home_images/nav_privacy_out.gif";

  jobsearch_on = new Image();
  jobsearch_on.src = "home_images/nav_jobsearch_on.gif";
  jobsearch_out = new Image();
  jobsearch_out.src = "home_images/nav_jobsearch_out.gif";

  applyonline_on = new Image();
  applyonline_on.src = "home_images/nav_applyonline_on.gif";
  applyonline_out = new Image();
  applyonline_out.src = "home_images/nav_applyonline_out.gif";



}
  
function msover(imgName) {
  if (true){
  document.images[imgName].src = "home_images/nav_"+imgName + "_on.gif";
  }
}

function msout(imgName) {
  if (true){
  document.images[imgName].src = "home_images/nav_"+imgName + "_out.gif";
  }
}