If you need a slideshow for your Drupal website, I recommend using JCarousel Lite – http://gmarwaha.com/jquery/jcarousellite/

It has lots of parameters to tweak depending on how you want to set it up. It’s easy to get working.

One slight issue (well major issue really until I fixed it), that I had using this with Drupal was that initially I needed to press F5 to refresh the browser before the images would display.

The fix for it was to surround the code with $(document).ready(function () { }

Here’s my code:

<script type=”text/javascript”>
$(document).ready(function () {
$(”.carousel”).jCarouselLite({
btnNext: “.next”,
btnPrev: “.prev”,
scroll: 1,
auto: 1200,
speed: 1600,
visible: 1
});
});
</script>