/*
 * This is a javascript file used for helping to manage and work with images.
 */

$(document).ready(function() {
  $('img').each(function() {
    if($(this).attr('alt')) {
      $(this).attr('title', $(this).attr('alt'));
    }
  });
});

