function theRotator() {
    $("div#rotator ul li").css({
        opacity: 0
    });
    $("div#rotator ul li:first").css({
        opacity: 1
    });
    setInterval("rotate()", 7500);
}
function rotate() {
    var b = ($("div#rotator ul li.show") ? $("div#rotator ul li.show") : $("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");
}
