(function($) {
  $(document).ready(function() {

    // Gallery page
    if ($("div#set-page").length) {

      // Make each images open in lightbox
      $("ul.picturelist div.thumb a").lightBox();

      // Preload gallery images
      var images = [];
      var i = 0;
      $("div.thumb a").each(function() {
        images[i] = new Image();
        images[i].src = $(this).attr("href");
      });

    }

  });
})(jQuery);


