$(document).ready(function(){  
 $( ".tab" ).tabs({  
   fx: { opacity: 'toggle' }, 
   select: function(event, ui) {
     $(this).css('height', $(this).height());
     $(this).css('overflow', 'hidden');
   },
   show: function(event, ui) {
     $(this).css('height', 'auto');
     $(this).css('overflow', 'visible');
   }
   
 })
 
 .tabs("rotate", 14000, true); 
 $(".menu ul li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).slideDown('fast');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).slideUp('fast');
    
    });
});
