jQuery(document).ready(function(){
    rollsv = null;
    $("img[src*='_d.']").hover(
      function(){rollsv=$(this).attr('src'); $(this).attr('src', rollsv.replace("_d.", "_x."));},
      function(){if(rollsv){$(this).attr('src', rollsv); rollsv=null;}}
    );
});
