$(document).ready(function() {
  $("img.roll").hover(function() {
    $(this).attr("src", function() {
      return this.src.substring(0, this.src.lastIndexOf(".")) + "_ov" + this.src.substring(this.src.lastIndexOf("."));
    });
  }, function() {
    $(this).attr("src", function() {
      return this.src.substring(0, this.src.search(/_ov\./)) + this.src.substring(this.src.lastIndexOf("."));
    });
  });
});