jQuery(function ($) {
  $('.gallery').each(function () {
    $('a', this).lightBox({fixedNavigation: true});
    $('li', this).each(function () {
        $(this).append('<span class="caption">' + $('a', this).attr('title') + '</span>');
    });
  });
});
