$(function(){
  $('.over').each(function(){
      //srcセット
      rolloverSrc = $(this).attr('src').replace(/(\.gif|\.jpg|\.png)$/, "_on"+"$1");

      //イメージセット
      $(this).clone().insertAfter(this)
        .attr('src',rolloverSrc)
        .css('display','none');

      //ロールオーバー(マウスオン時)
      $(this).mouseover(function(){
        $(this).hide();
        $(this).next().show();
      });
      //ロールオーバー(マウスアウト時)
      $(this).next().mouseout(function(){
        $(this).hide();
        $(this).prev().show();
      });
  });
});
