This is where I have the Slide show
www.pimpthatfood.com. and this is the script I am using.
function slideSwitch() {
var $active = $('#slideshow a.active');
var $next = $active.next();
$active.addClass('active last-active');
$next.css({ opacity: 0.0 })
.addClass('active')
.animate({ opacity: 1.0 }, 1000, function() {
$active.removeClass('active last-active');
});
}
$(function() {
setInterval("slideSwitch()", 5000);
});