
$(document).ready(function() {   
  
  $('img').hover(function() {
    $(this).attr('src',$(this).attr('src').replace('off.jpg','on.jpg'))
  ;},
  function() {
    $(this).attr('src',$(this).attr('src').replace('on.jpg','off.jpg'));
  });
    
});
  

