﻿var showcount = 0;
var p_sumcount = 0;
$(document).ready(function () {
    p_sumcount = $(".IndexImg a").size();
    if (p_sumcount > 1) {
        setInterval("next()", 8000);//自动切换
    }
    //初始化icon
    $(".IndexImg a").each(function () {
        $(".iconmenu").append("<li class='icondefault'>•</li>");
    });
    //显示第一张
    ShowImg();
    //点击切换图片
    $(".iconmenu li").click(function () {
        showcount = $(this).index(".iconmenu li");
        ShowImg();
    });
});

//下一张
function next() {
    showcount++;
    if (showcount >= $(".IndexImg a").size()) {
        showcount = 0;
    }
    ShowImg();
}

//显示which one
function ShowImg() {
    $(".IndexImg a").hide();
    var i = $(".IndexImg a:eq(" + showcount + ")")
    $(".ld_text").html("").append("<a href='" + i.attr("href") + "'>" + i.attr("title") + "</a>");
    i.fadeIn(1000);
    $(".iconchoose").removeClass("iconchoose");
    $(".iconmenu li:eq(" + showcount + ")").addClass("iconchoose");
}
