Cycle Lite stops after 2 images

Cycle Lite stops after 2 images

photo1.gif fades in as expected, then fades to photo2.gif, but then nothing else happens.
  1. $(function() {
        $('#slideshow img:first').fadeIn(1000, function() {
            $('#slideshow').cycle();
        });
    });



  2. <div id="slideshow">
     <img src="photo1.gif" class="first" />
     <img src="photo2.gif" />
     <img src="photo3.gif" />
    </div>