Problem with last image with Cycle Plugin
I am using the jquery Cycle Plugin with images pulling from a database. After the last image or even text blocks, the image jumps down before starting the rotation over. Is it just a problem with images pulling from a database? Here is the PHP:
<div id="slideshow">
<?php do { ?>
<img src="/admin/gallery/files/tmb_<?php echo $row_gallery['gallery_src']; ?>" alt="<?php echo $row_gallery['gallery_description']; ?>" width="409" height="275" />
<?php } while ($row_gallery = mysql_fetch_assoc($gallery)); ?>
<img src="/images/santoniscreen.png" alt="" width="409" height="275" />
<div id="title" style="font-family:Arial, Helvetica, sans-serif; font-size:11px; text-align:left; padding-top:4px; color:#8a7967; position:relative; top:0px; left:0px;">Brief Description Here</div>
</div>