jQuery(document).ready( function() {
  // We dynamically add some nav buttons

  // Add cycling between albums
  jQuery('.airbornGallery').wrapAll('<div id="photo-albums"></div>');

  jQuery('.prev,.next').click(function () {
    jQuery('#intro:visible').slideToggle();
  });
  // Add lightbox to images
  jQuery('.airbornGallery a').lightBox();
}); 
