Create a simple iTunes-esque slider with jQuery
by Siddharth for the lovely folks at Net Tuts
A simple slider/slideshow which mostly emulates the one on iTunes barring a few changes. Click the down button to cycle the images.
mocha.js
$(document).ready(function()
{
var index = 0;
var images = $("#gallery img");
var thumbs = $("#thumbs img");
var imgHeight = thumbs.attr("height");
thumbs.slice(0,3).clone().appendTo("#thumbs");
for (i=0; i