    $(document).ready(function() {
        $("#tabs").tabs({
                        event: 'mouseover',
                        fx:  [{opacity:'toggle', duration:'normal'},   // hide option
                        {opacity:'toggle', duration:'fast'}]
                        }).tabs('rotate', 10000, true);

        //Programatically Add and remove some classes for better styling
        $("#tabs").removeClass("ui-widget ui-widget-content");
                $(".ui-corner-bottom").removeClass("ui-tabs-panel ui-widget-content");

        $(".tabs-bottom .ui-tabs-nav, .tabs-bottom .ui-tabs-nav > *") 
        .removeClass("ui-corner-all ui-corner-top") 
        .addClass("ui-corner-bottom");
        
    /*    //reverse tab direction (1/2/3 not 3/2/1):
        // http://groups.google.com/group/jquery-ui/browse_thread/thread/9d87fbdd72d6d413/0a258dc8884499bf?lnk=raot&pli=1
        $(".ui-tabs .ui-tabs-nav li").each(function() {
        $(this).prependTo($(this).parent());        
        }); */

    });

