When a jquery slideshow loops too fast

When a jquery slideshow loops too fast

Hello all again! :) I'm still trying to learn jQuery, it's pretty fun. and scary too..

This time I integrated a s3slider with wordpress. It displays a post image and title. For some reason, sometimes it loops very fast through the featured posts even when it's set to slow.

The code I'm using is

  1. <script type="text/javascript">
  2. $(document).ready(function() { 
  3.    $('#s3slider').s3Slider({ 
  4.       timeOut: 3000 
  5.    });
  6. });
  7. </script>



  8. <div id="s3slider">

  9.    <ul id="s3sliderContent">
  10. <?php
  11. query_posts('cat='.$slide_cat = get_option('slide_cat').'&posts_per_page=' . get_option('slide_limit', 10));
  12. ?>
  13. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  14.       <li class="s3sliderImage">  
  15.       
  16. <?php the_post_thumbnail( 'home' ); ?>
  17. <span><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></span>
  18. </li>

  19. <?php endwhile; else: ?>
  20. <div class="nexui_slider_message">
  21. The category ID you entered for the slideshow doesn't exist.
  22. </div>

  23. <?php endif; ?>

  24. <?php wp_reset_query(); ?>

  25. <div class="clear s3sliderImage"></div>

  26.    </ul>

  27. </div>
Not sure if I made a mistake in there. I can't figure out what's causing this.