A simple continuous jQuery Slideshow plugin.

Effects include: Slide, Reveal, and Fade (with pan option).

Usage:


<div class="myslideshow"></div>


$(".myslideshow").slideshow({
// optional //
        width:800,
        height:600,
        duration : 3500, // time between slides
        speed : 500, // speed of the transition - must be 500 or greater if using pan
        effect : "fade", // slide, reveal
        pan : true, // only applicable to fade effect
        panSpeed : 3000 // must be at least 500 ms less than duration
// mandatory //
        images : [  "image1.jpg",
                    "image2.jpg",
                    "image3.jpg",
                    "image4.jpg",
                    "image5.jpg"
                 ],
        pathToImgs : "images/"
        });