<!--

if (document.images) {

  image1on = new Image();
  image1on.src = "/images/buthomeon.jpg";

  image2on = new Image();
  image2on.src = "/images/butourrangeon.jpg";

  image3on = new Image();
  image3on.src = "/images/butstockistson.jpg";

  image4on = new Image();
  image4on.src = "/images/butaboutyouon.jpg";
   
  image5on = new Image();
  image5on.src = "/images/butaboutgluvon.jpg";
  

  image1off = new Image();
  image1off.src = "/images/buthomeoff.jpg";

  image2off = new Image();
  image2off.src = "/images/butourrangeoff.jpg";

  image3off = new Image();
  image3off.src = "/images/butstockistsoff.jpg";
  
  image4off = new Image();
  image4off.src = "/images/butaboutyouoff.jpg";
  
  image5off = new Image();
  image5off.src = "/images/butaboutgluvoff.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");
  }
}

// -->