function Rollover(img) {
  img.onmouseover = function() {
    this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
   }
   img.onmouseout = function() {
    this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
   }
}

