<!--

if (document.images) {
  image1on = new Image();
  image1on.src = "http://www.museum.vic.gov.au/images/global_mv_1.gif";

  image2on = new Image();
  image2on.src = "http://www.museum.vic.gov.au/images/global_whatson_1.gif";
  
  image3on = new Image();
  image3on.src = "http://www.museum.vic.gov.au/images/global_collres_1.gif";
  
  image4on = new Image();
  image4on.src = "http://www.museum.vic.gov.au/images/global_edu_1.gif";
  
  image5on = new Image();
  image5on.src = "http://www.museum.vic.gov.au/images/global_virtshow_1.gif";

  
  image1off = new Image();
  image1off.src = "http://www.museum.vic.gov.au/images/global_mv_0.gif";

  image2off = new Image();
  image2off.src = "http://www.museum.vic.gov.au/images/global_whatson_0.gif";
  
  image3off = new Image();
  image3off.src = "http://www.museum.vic.gov.au/images/global_collres_0.gif";
  
  image4off = new Image();
  image4off.src = "http://www.museum.vic.gov.au/images/global_edu_0.gif";
  
  image5off = new Image();
  image5off.src = "http://www.museum.vic.gov.au/images/global_virtshow_0.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");
  }
}

// -->
