// Rollover - This swaps the normal state image with the over state image
// You must put the name value into the image tage
function change(name,file) {
  if (document.images)
    eval('document.images["'+name+'"].src="'+file+'"')
}

// Preload - This loads the over states when the page loads
// You must put all the over states into the body onload
function preload() {
  if (document.images) {
    var imgFiles = preload.arguments;
    var preloadArray = new Array();
    for (var i=0; i<imgFiles.length; i++) {
      preloadArray[i] = new Image;
      preloadArray[i].src = imgFiles[i];
    }
  }
}