$(document).ready(function(){

  $('#pics').cycle({ 
    fx:     'scrollDown',
    easing: 'bounceout',
    speed: 1000,
    timeout: 5000,
    delay:  -2000
  });
  
  $('#pause a:first').toggle(
    function(){
      $('#pics').cycle('pause');
      $(this).text('resume');
      return false;
    },
    function(){
      $('#pics').cycle('resume');
      $(this).text('pause');
      return false;
    }
  );
  
});

