$.fn.cycle.defaults.speed   = 900;
$.fn.cycle.defaults.timeout = 6000;

$(document).ready(function(){
  $('#s6').cycle({
    fx: 'scrollUp',
    next:   '#s6',
    pause:   1
  });

  $('#s7').cycle({
    speed:   800,
    timeout: 5000,
    next:   '#s7',
    pause:   1
  });

$('#s5').cycle({  
    fx:     'turnDown',
    speed:  'slow',
    timeout: 0,
    pager:  '#nav',
    next:   '#s5',
     
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
         return '#nav div div:eq(' + idx + ') a';
    } 
});


});


