if (document.images) {

  image1on = new Image();
  image1on.src = "https://www.associationintel.com/sitePix/nav-home-on.gif";
  image2on = new Image();
  image2on.src = "https://www.associationintel.com/sitePix/nav-search_associations-on.gif";
  image3on = new Image();
  image3on.src = "https://www.associationintel.com/sitePix/nav-search-on.gif";
  image4on = new Image();
  image4on.src = "https://www.associationintel.com/sitePix/nav-subscribe-on.gif";
  image5on = new Image();
  image5on.src = "https://www.associationintel.com/sitePix/nav-about-on.gif";
  image6on = new Image();
  image6on.src = "https://www.associationintel.com/sitePix/nav-contact-on.gif";
  image7on = new Image();
  image7on.src = "https://www.associationintel.com/sitePix/nav-help-on.gif";
  image8on = new Image();
  image8on.src = "https://www.associationintel.com/sitePix/nav-MU-directors-message-on.gif";
  image9on = new Image();
  image9on.src = "https://www.associationintel.com/sitePix/nav-MU-faqs-on.gif";
  
  image1off = new Image();
  image1off.src = "https://www.associationintel.com/sitePix/nav-home-off.gif";
  image2off = new Image();
  image2off.src = "https://www.associationintel.com/sitePix/nav-search_associations-off.gif";
  image3off = new Image();
  image3off.src = "https://www.associationintel.com/sitePix/nav-search-off.gif";
  image4off = new Image();
  image4off.src = "https://www.associationintel.com/sitePix/nav-subscribe-off.gif";
  image5off = new Image();
  image5off.src = "https://www.associationintel.com/sitePix/nav-about-off.gif";
  image6off = new Image();
  image6off.src = "https://www.associationintel.com/sitePix/nav-contact-off.gif";
  image7off = new Image();
  image7off.src = "https://www.associationintel.com/sitePix/nav-help-off.gif";
  image8off = new Image();
  image8off.src = "https://www.associationintel.com/sitePix/nav-MU-directors-message-off.gif";
  image9off = new Image();
  image9off.src = "https://www.associationintel.com/sitePix/nav-MU-faqs-off.gif";

}


function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src")
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src")
  }
}