<!--

if (document.images) {
  image400on = new Image();
  image400on.src = "/images/butt_home_on.gif";
  
  image400off = new Image();
  image400off.src = "/images/butt_home_off.gif";
  

}

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");
  }
}

// -->
