/*
SLIDESHOW
*/
function slideSwitch() {
    var $active = $('#slideshow div.active');

    if ( $active.length == 0 ) $active = $('#slideshow div:last');

    var $next =  $active.next().length ? $active.next() : $('#slideshow DIV:first');
    $next.addClass('active')
         .fadeIn(2000);
    $active.fadeOut(2000, function() {
            $active.removeClass('active');
            });
}

window.onload = $(function() {
    setInterval( "slideSwitch()", 7500 );
});

