$(function(){
     $('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_out', '_over'));
          }, function(){
             if (!$(this).hasClass('currentPage')) {
             $(this).attr('src', $(this).attr('src').replace('_over', '_out'));
        }
   });
});
