$(function() {
  $('img').each(function() {
    $(this).attr('title', $(this).attr('alt'));
  });
  $('img[src*=catalog]').tooltip({
    showURL: false,
    delay: 0,
    track: true
  });
});


