Event.onReady(function() {
  $$('img[title]').each(function(inputElement) {
    inputElement.insert({'after': $span({'class': 'caption'}, inputElement.title)});
  });
});

