// JavaScript Document

function slideSwitch3() {
    var $active = $('#slideshow3 DIV.active2');

    if ( $active.length == 0 ) $active = $('#slideshow3 DIV:last');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow3 DIV:first');

    $active.addClass('last-active2');

    $next.css({opacity: 0.0})
        .addClass('active2')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active2 last-active2');
        });
}

$(function() {
    setTimeout(function(){setInterval( "slideSwitch3()", 5000 );},1000);
});




