Effects include: Slide, Reveal, and Fade (with pan or zoom options).
Usage:
<div class="myslideshow"></div>
$(".myslideshow").slideshow({
// optional //
width:800,
height:300,
duration : 3500, // 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/"
});