<!--

if (document.images) {

  image1on = new Image();
  image1on.src = "images/buthomeon.jpg";

  image2on = new Image();
  image2on.src = "images/butcustomerinformationon.jpg";

  image3on = new Image();
  image3on.src = "images/buttermson.jpg";

  image4on = new Image();
  image4on.src = "images/butcontactuson.jpg";
  
  

  image1off = new Image();
  image1off.src = "images/buthomeoff.jpg";

  image2off = new Image();
  image2off.src = "images/butcustomerinformationoff.jpg";

  image3off = new Image();
  image3off.src = "images/buttermsoff.jpg";
  
  image4off = new Image();
  image4off.src = "images/butcontactusoff.jpg";
  
   
}

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");
  }
}

// -->