var refreshIntervalId;var animationTime=500;var transitionDelay=8000;function theRotator(){$('div#rotator ul li').css({opacity:0.0});$('div#rotator ul li:first').css({opacity:1.0});$('.rotator_link:first').addClass('active').addClass('no_click');refreshIntervalId=setInterval('rotate()',transitionDelay)}function rotate(){var current=($('div#rotator ul li.show')?$('div#rotator ul li.show'):$('div#rotator ul li:first'));var next=((current.next().length)?((current.next().hasClass('show'))?$('div#rotator ul li:first'):current.next()):$('div#rotator ul li:first'));next.css({opacity:0.0}).addClass('show').animate({opacity:1.0},animationTime);var currentLink=($('.active')?$('.active'):$('.rotator_link:first'));var nextLink=((currentLink.next('.rotator_link').length)?((currentLink.next().hasClass('active'))?$('.rotator_link:first'):currentLink.next('.rotator_link')):$('.rotator_link:first'));nextLink.addClass('active').addClass('no_click');currentLink.removeClass('active').removeClass('no_click');current.animate({opacity:0.0},animationTime).removeClass('show')}$(document).ready(function(){theRotator();$('.rotator_link').each(function(i){$(this).click(function(){if(!$(this).hasClass('no_click')){clearInterval(refreshIntervalId);var current=($('div#rotator ul li.show')?$('div#rotator ul li.show'):$('div#rotator ul li:first'));var next=$('div#rotator ul li:eq('+i+')');next.css({opacity:0.0}).addClass('show').animate({opacity:1.0},animationTime);current.animate({opacity:0.0},animationTime).removeClass('show');$('.rotator_link').removeClass('active').removeClass('no_click');$(this).addClass('active').addClass('no_click')}return false})})});
