Filter question

Filter question

I have the following HTML:

  1.  <!-- Beginning of slides -->
  2.   <div id="slider-wrapper">
  3.         <div class="slider">
  4.           <img src="images/5587_120512_b.jpg" width="399" height="600" alt="Smokey Bear"/>
  5.         </div>
  6.         <div class="slider">
  7.         <img src="images/slide_8105.jpg" width="526" height="350" alt="Brids of Prey"/>
  8.         </div>
  9.         <div class="slider">
  10.           <img src="images/slide_8115.jpg" width="526" height="350" alt="Otter"/>
  11.         </div>
  12.         <!-- <p class="caption" id="caption"></p> -->
  13.   </div>

The Jquery is

  1.     <script type="text/javascript">
  2.       $(document).ready(function() {
  3.       $('#slider-wrapper').cycle({
  4.  fx: 'scrollHorz',
  5.       timeout: 3000,
  6.         after: function() {
  7.             $('#caption').html(this.alt);
  8.         }
  9.      });
  10.       });
  11.     </script>
I want to filter the selector so that a "<p> is not included; only the "<div>" of class = slider.  Can that be done with my current structure?

    <script type="text/javascript">
      $(document).ready(function() {
      $('#slider-wrapper').cycle({
 fx: 'scrollHorz',
      timeout: 3000,
        after: function() {
            $('#caption').html(this.alt);
        }
     });
      });
    </script>

The working application is  here.

Todd