jQuery(document).ready(function() {

    jQuery('.spotlight .slide:first-child').addClass('show');

    setInterval('slideshow()',6500);

});


function slideshow() {
    var current = jQuery('.spotlight .slide.show');
    var next = (current.next().length)? current.next() : jQuery('.spotlight .slide:first-child');

    next.fadeIn(1500,function() {
        next.addClass('show');
    });

    current.fadeOut(1500, function() {
        current.removeClass('show');
    });
}
