// JavaScript Document

$('#s2').cycle({
   fx:     'fade',
   speed:  'fast',
   timeout: 0,
   next:   '#next2',
   prev:   '#prev2',
   after: function(curr,next,opts) {
       var caption = '(' + (opts.currSlide + 1) + ' of ' + opts.slideCount + ')';
       $('#caption').html(caption);
   }
});

