Cycle: How to delay click functionality...

Cycle: How to delay click functionality...

On my slideshow, if the slide is clicked it will pause. But I want to delay the ability to click-to-pause until after the first slide transition. Right now the "#slideshow" div is clickable as soon as the DOM is ready; too soon for me.

An abridged version of what I have now:
  1. $(document).ready(function(){

  2.       $('#slideshow img').toggle(function() {
  3.             $('#slideshow').cycle('pause');
  4.       }, function() {
  5.             $('#slideshow').cycle('resume');
  6.       });

  7.       $('#slideshow').cycle({
  8.             /*options*/
  9.       });
  10.  
  11. }); // end ready