jQuery(document).ready(function() {
  jQuery('img').each(function() {
    if (!jQuery(this).parents('form, ul.gallery').length > 0) {
      jQuery(this).wrap('<span class="shadow" />');
    }
  });

  jQuery('.ngg-galleryoverview img').each(function() {
    jQuery(this).click(function() {
      jQuery('#main_image img').attr('src', (jQuery(this).attr('src').replace('/thumbs/thumbs_', '/')));

      var text = "&nbsp;";

      if (jQuery(this).attr('title').length > 0) {
        text = jQuery(this).attr('title');
      }
      jQuery('#main_image p').html(text);
    });
  });
});
