$(function () {
    $(".banner_san li").each(function (index) {
        $(this).click(function () {
            changeid(index);
        })
        $(this).hover(function () {
            $(".banner_san li").each(function (index) { $(this).removeClass("hover"); });
            $(this).addClass("hover");
        }, function () {
        });
    })
    var $self3 = $(".topadv_san ul");
    $self3.css("width", 2940);
    var liwidth3 = $self3.find("img:first").width();
    var scrollTimerleft3 = setInterval(scrollleft3, 5000);
    function scrollleft3() {
        if (!$self3.is(":animated")) {
            $self3.animate({ left: 0 }, 1000, function () {
                $self3.css({ left: 0 }).find("li:first").appendTo($self3);
            });
        }
    }
})
