//<![CDATA[
$(document).ready(function(){
	setInterval("rotateIt()", 11000 );


});

function rotateIt() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');
  

    $active.removeClass('active').fadeOut("fast").addClass('hidden');
    $next.fadeIn("slow").removeClass('hidden').addClass('active');
    
    var $tactive = $('#textshow UL.active');

    if ( $tactive.length == 0 ) $tactive = $('#textshow UL:last');

    var $tnext =  $tactive.next().length ? $tactive.next()
        : $('#textshow UL:first');
  

    $tactive.removeClass('active').fadeOut("fast").addClass('hidden');
    $tnext.fadeIn("slow").removeClass('hidden').addClass('active');
}


//]]>