
$(document).ready(function(){
    $("#featured").tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 8000);
    $('#featured').click(function(){
            $(this).tabs('rotate', 0, false);
        },function(){
            $(this).tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 8000);
        }
    );
});


