/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
=================================================================== */

function slideshow() {
minPic = 0;
maxPic = $("#picHolder div").length-1;

var img = $("#picHolder div");
img.hide();
img.eq(0).fadeIn(500);

$("#previous").click(function(){
img.eq(minPic).fadeOut(500);
if (minPic == 0) {
minPic = maxPic+1;
}
minPic--;
img.eq(minPic).fadeIn(500);
});

$("#next").click(function(){
img.eq(minPic).fadeOut(500);
if (minPic == maxPic) {
minPic = -1;
}
minPic++;
img.eq(minPic).fadeIn(500);
});
}

window.onload=slideshow; 
