$(document).ready( function() { // We dynamically add some nav buttons var prevNext = '
'; $(prevNext).insertAfter('.album:last'); // Add cycling between albums $('.album').wrapAll(''); $('#photo-albums').cycle({ fx: 'fade', speed: 500, timeout: 0, next: '.next', prev: '.prev' }); $('.prev,.next').click(function () { $('#intro:visible').slideToggle(); }); // Add lightbox to images $('.album a').lightBox(); });