A simple continuous jQuery Slideshow plugin.

Effects include: Slide, Reveal, and Fade (with pan or zoom options).

Reveal | Slide | Fade | Fade w/Pan | Fade w/Zoom

Usage:


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

$(".myslideshow").slideshow({
// optional //
        width:800,
        height:300,
        duration : 4500, // time between slides
        speed : 500, // speed of the transition - must be 500 or greater if using pan
                     // ideal speed for "slide" and "reveal" is 400
        transition : "fade" | "slide" | "reveal",
        effect : "pan" | "zoom", // only applicable to fade effect
        effectSpeed : 3000 // must be less than duration by at least 500ms

// mandatory //
        images : [  "image1.jpg",
                    "image2.jpg",
                    "image3.jpg",
                    "image4.jpg",
                    "image5.jpg"
                 ],
        pathToImgs : "images/"
        });