if (document.images) {
        
  b1off = new Image;  b1off.src = "images/homeoff.gif";
  b1on  = new Image;  b1on.src  = "images/homeon.gif";
  b2off = new Image;  b2off.src = "images/welcomeoff.gif";
  b2on  = new Image;  b2on.src  = "images/welcomeon.gif";
  b3off = new Image;  b3off.src = "images/whoweareoff.gif";
  b3on  = new Image;  b3on.src  = "images/whoweareon.gif";
  b4off = new Image;  b4off.src = "images/whatwedooff.gif";
  b4on  = new Image;  b4on.src  = "images/whatwedoon.gif";
  b5off = new Image;  b5off.src = "images/communityinformationoff.gif";
  b5on  = new Image;  b5on.src  = "images/communityinformationon.gif";
  b6off = new Image;  b6off.src = "images/ourstaffoff.gif";
  b6on  = new Image;  b6on.src  = "images/ourstaffon.gif";
  b7off = new Image;  b7off.src = "images/tourisminformationoff.gif";
  b7on  = new Image;  b7on.src  = "images/tourisminformationon.gif";
  b8off = new Image;  b8off.src = "images/locationoff.gif";
  b8on  = new Image;  b8on.src  = "images/locationon.gif";
  b9off = new Image;  b9off.src = "images/searchoff.gif";
  b9on  = new Image;  b9on.src  = "images/searchon.gif";
}

function btnon(imgName) {
  if (document.images) 
    document[imgName].src = eval(imgName + 'on.src')
}

function btnoff(imgName) {
  if (document.images)
    document[imgName].src = eval(imgName + 'off.src')
}