  function roll(image,way){
    if(way == "on"){
      image.src = "images/" + image.name + "_over.gif";
    } else {
      image.src = "images/" + image.name + ".gif";
    }
  }
  