$(document).ready(function() { 
   $('#slideShowIndex').cycle({ 
      fx:      'fade', 
      speedIn:  200, 
      speedOut: 50, 
      delay:   -2000,
      timeout: 3000,
      pause:1,
      pagerEvent: 'mouseover',
      pauseOnPagerHover: true,
      forcePause:true,
      pager:  '#pagerIndex'      
   });
   
   $('#pagerIndex a').each(function(){
      $(this).after('<div class="pagerspace">&nbsp;</div>');
   });
   
   $('a#cycle_stop').click(function() {
      $('#slideShowIndex').cycle('pause');
      $('#cycle_play').show();
      $('#cycle_stop').hide();
   });
   
   $('a#cycle_play').click(function() {
      $('#slideShowIndex').cycle('resume');
      $('#cycle_play').hide();
      $('#cycle_stop').show();
   });
   
   $('a#cycle_next').click(function() {
      $('#slideShowIndex').cycle('nextCycle');
      $('#cycle_play').show();
      $('#cycle_stop').hide();
   });
   
   $('a#cycle_prev').click(function() {
      $('#slideShowIndex').cycle('prevCycle');
      $('#cycle_play').show();
      $('#cycle_stop').hide();
   });

   
});