if (document.images) {
  var b1off = new Image(); b1off.src = "http://www.wnytalent.com/images/home-1.gif";
  var b1on = new Image(); b1on.src = "http://www.wnytalent.com/images/home-2.gif";
  var b2off = new Image(); b2off.src = "http://www.wnytalent.com/images/about-1.gif";
  var b2on = new Image(); b2on.src = "http://www.wnytalent.com/images/about-2.gif";
  var b3off = new Image(); b3off.src = "http://www.wnytalent.com/images/become-1.gif";
  var b3on = new Image(); b3on.src = "http://www.wnytalent.com/images/become-2.gif";
  var b4off = new Image(); b4off.src = "http://www.wnytalent.com/images/opportunities-1.gif";
  var b4on = new Image(); b4on.src = "http://www.wnytalent.com/images/opportunities-2.gif";
  var b5off = new Image(); b5off.src = "http://www.wnytalent.com/images/news-1.gif";
  var b5on = new Image(); b5on.src = "http://www.wnytalent.com/images/news-2.gif";
  var b6off = new Image(); b6off.src = "http://www.wnytalent.com/images/contact-1.gif";
  var b6on = new Image(); b6on.src = "http://www.wnytalent.com/images/contact-2.gif";
}

function turnOn(imgName) {
  if (document.images)
    document.images[imgName].src = eval(imgName + 'on.src');
}

function turnOff(imgName) {
  if (document.images)
    document.images[imgName].src = eval(imgName + 'off.src');
}
