$(function() {
    $('#rotation li').show();
    setInterval(function() {
            $('#rotation li:last').animate({opacity: 0}, 1000, function() {
                $(this).remove().css('opacity', 1).prependTo('#rotation');
            });
    }, 5000);
    $("#accordion").accordion({
        'autoHeight': true,
        'clearStyle': true,
        'active': false
    });

});
