$(function() {
    $(".rollover").hover(
      function () {
        $(this).attr("src", $(this).attr("src").replace(/.jpg/, "_hov.jpg"));
      },
      function () {
        $(this).attr("src", $(this).attr("src").replace(/_hov.jpg/, ".jpg"));
      }
    );
  });
