$(function() {
  $(".rollover").hover(
    function() {
      src = $(this).children().first().attr("src");
      dst = src.replace('_base','_over');
      $(this).children().first().attr("src",dst);
    },
    function() {
      src = $(this).children().first().attr("src");
      dst = src.replace('_over','_base');
      $(this).children().first().attr("src",dst);
    }
  );
});

