﻿$(function()
{
    var len = $("#imgAdSmall li").length;
    var index = 0;
    var adTimer;
    //广告先
    $("#imgAdBig").hover(function()
    {
        clearInterval(adTimer);
    }, function()
    {
        adTimer = setInterval(function()
        {
            showImg(index);
            index++;
            if (index == len) { index = 0; }
        }, 3000);
    }).trigger("mouseleave");
    //再导航
    $("#imgAdSmall li").mouseover(function()
    {
        index = $("#imgAdSmall li").index(this);
        showImg(index);
    }).eq(0).mouseover();
});
function showImg(index)
{
    var adHeight = $("#imgAdBig").height();
    $("#imgAdBig>ul").stop(true, false).animate({ top: -adHeight * index + "px" }, 3000);  //必须配合position:absolute
    $("#imgAdSmall li").removeClass("on").eq(index).addClass("on");
}
