$(function () {
var timejg = 3000;//è½®æ’间隔时间
var size = $('.box_img ul li').length;
for (var i = 1; i <= size; i++) {
$('.box_tab').append('<a href="javascript:void(0)" target=\'_blank\'>' + i + '</a>')
}
$(".box_tab").width(40*size);
$('.box_img ul li').eq(0).show();
$('.box_tab a').eq(0).addClass('active');
$('.box_tab a').mouseover(function () {
$(this).addClass('active').siblings().removeClass('active');
var index = $(this).index();
i = index;
$('.box_img ul li').eq(index).stop().fadeIn(300).siblings().stop().fadeOut(300);
});
var i = 0;
var time = setInterval(move, timejg);
function move() {
i++;
if (i == size) {
i = 0;
}
$('.box_tab a').eq(i).addClass('active').siblings().removeClass('active');
$('.box_img ul li').eq(i).fadeIn(300).siblings().fadeOut(300);
}
$('.box').hover(function () {
clearInterval(time);
}, function () {
time = setInterval(move, timejg);
});
});