$(document).ready(function(){


if($("#featureds").length){
 $("#featureds").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);  
 $("#featureds").hover(  
	function() {  
            $("#featureds").tabs("rotate",0,true);  
 	},  
 	function() {  
            $("#featureds").tabs("rotate",5000,true);  
 	}  
 );  
}
});

