<!--
if (document.images) {
   var butt1off = new Image()
   butt1off.src = "images/home-off.gif"
   var butt1on = new Image()
   butt1on.src = "images/home-on.gif"
   var butt2off = new Image()
   butt2off.src = "images/about-off.gif"
   var butt2on = new Image()
   butt2on.src = "images/about-on.gif"
   var butt3off = new Image()
   butt3off.src = "images/products-off.gif"
   var butt3on = new Image()
   butt3on.src = "images/products-on.gif"
   var butt4off = new Image()
   butt4off.src = "images/install-off.gif"
   var butt4on = new Image()
   butt4on.src = "images/install-on.gif"
   var butt5off = new Image()
   butt5off.src = "images/faqs-off.gif"
   var butt5on = new Image()
   butt5on.src = "images/faqs-on.gif"
   var butt6off = new Image()
   butt6off.src = "images/testimonial-off.gif"
   var butt6on = new Image()
   butt6on.src = "images/testimonial-on.gif"
   var butt7off = new Image()
   butt7off.src = "images/trade-sales-off.gif"
   var butt7on = new Image()
   butt7on.src = "images/trade-sales-on.gif"
   var butt8off = new Image()
   butt8off.src = "images/contact-off.gif"
   var butt8on = new Image()
   butt8on.src = "images/contact-on.gif"
   var butt9off = new Image()
   butt9off.src = "images/gallery-off.gif"
   var butt9on = new Image()
   butt9on.src = "images/gallery-on.gif"
}
function img_on(imgName) {
  if (document.images) 
     document[imgName].src = eval(imgName + 'on.src')
}
function img_off(imgName) {
  if (document.images)
     document[imgName].src = eval(imgName + 'off.src')
}
// -->