if (document.images) {

  image1on = new Image();
  image1on.src = "http://www.healthandcleanair.org/images/home2.gif";

  image2on = new Image();
  image2on.src = "http://www.healthandcleanair.org/images/newsletters2.gif";

  image3on = new Image();
  image3on.src = "http://www.healthandcleanair.org/images/references2.gif";

  image4on = new Image();
  image4on.src = "http://www.healthandcleanair.org/images/contact2.gif";

  image5on = new Image();
  image5on.src = "http://www.healthandcleanair.org/images/subscribe2.gif";

  image6on = new Image();
  image6on.src = "http://www.healthandcleanair.org/images/resources2.gif";

  image7on = new Image();
  image7on.src = "http://www.healthandcleanair.org/images/discussion2.gif";

  image9on = new Image();
  image9on.src = "http://www.healthandcleanair.org/images/et2.gif";

  image1off = new Image();
  image1off.src = "http://www.healthandcleanair.org/images/home1.gif";

  image2off = new Image();
  image2off.src = "http://www.healthandcleanair.org/images/newsletters1.gif";

  image3off = new Image();
  image3off.src = "http://www.healthandcleanair.org/images/references1.gif";

  image4off = new Image();
  image4off.src = "http://www.healthandcleanair.org/images/contact1.gif";

  image5off = new Image();
  image5off.src = "http://www.healthandcleanair.org/images/subscribe1.gif";

  image6off = new Image();
  image6off.src = "http://www.healthandcleanair.org/images/resources1.gif";

  image7off = new Image();
  image7off.src = "http://www.healthandcleanair.org/images/discussion1.gif";

  image9off = new Image();
  image9off.src = "http://www.healthandcleanair.org/images/et1.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");
  }
}