function theRotator(){$("div.rotator ul li").css({opacity:0});$("div.rotator ul li:first").css({opacity:1});setInterval("rotate()",6000)}function rotate(){var b=($("div.rotator ul li.show")?$("div.rotator ul li.show"):$("div.rotator ul li:first"));if(b.length==0){b=$("div.rotator ul li:first")}var a=((b.next().length)?((b.next().hasClass("show"))?$("div.rotator ul li:first"):b.next()):$("div.rotator ul li:first"));a.css({opacity:0}).addClass("show").animate({opacity:1},1000);b.animate({opacity:0},1000).removeClass("show")}$(document).ready(function(){theRotator();$("div.rotator").fadeIn(1000);$("div.rotator ul li").fadeIn(1000)});
