$(document).ready(function() {
  $('.book-now').each(function() {
    off_src = $(this).attr('src');
    on_src = off_src.replace('.gif', '-on.gif');
    $(this).hover(function() {
      $(this).attr('src', on_src);
    }, function() {
      $(this).attr('src', off_src);
    });
  });
});
