$(function(){ var timer=null; var acheck=$('.circle_item span'); var opic=$('#box .banner_item'); var prev=$('.prev'); var next=$('.next'); var index=0; timer=setinterval(timemove,7000); function timemove(){ if(index==acheck.length-1) { index=0; } else { index++; } startmove(); }; function startmove(){ opic.stop(); acheck.removeclass('active').eq(index).addclass('active'); opic.eq(index).fadein(500).siblings().fadeout(500); }; acheck.hover(function(){ clearinterval(timer); index=$(this).index(); startmove(); },function(){ to(); }); function to() { timer=setinterval(timemove,5000); }; opic.hover(function(){ clearinterval(timer); },function(){ to(); }); prev.hover(function(){ $(this).find('.mouse').show(); },function(){ $(this).find('.mouse').hide(); }).click(function(){ index==0?index=acheck.length-1:index--; startmove(); }); next.hover(function(){ $(this).find('.mouse').show(); },function(){ $(this).find('.mouse').hide(); }).click(function(){ index==acheck.length-1?index=0:index++; startmove(); }); });