First of all i am search google. and collect this JavaScript code.
i think it is a nice solution for those who were looking to enable pause on hover for the current slide. Use this piece of JavaScript code instead of above.
$(document).ready(function(){
$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
$("#featured").hover(
function() {
$("#featured").tabs("rotate",0,true);
},
function() {
$("#featured").tabs("rotate",5000,true);
}
);
});