$.fn.extend({
    TrunAd: function (options) {
        var auto = null;
        var obj = $(this);
        counta = $("div", obj).size();
        if (p_num == null || p_num == "") {
            var na = 0;
        } else {
            var na = p_num;
        }
        var settings = { timer: 3300, menu: "#play_text" };
        options = options || {};
        $.extend(settings, options);

        $("div", this).hide();
        $(this).children("div").eq(na).show()
        $(settings.menu + " li").eq(na).css({ "background": "url(http://www.gdyjqy.com/images/hover.gif) no-repeat center center", "color": "#FFF",  "margin-top": "0" });

        $(settings.menu + " li").mouseover(function () {
            ia = $(this).attr("value") - 1;
            na = ia;
            //alert(na);
            if (na >= counta) return;
            $("div", obj).filter(":visible").fadeOut(200, function () { $(this).parent().children().eq(na).fadeIn(300); });
            $(this).css({ "background": "url(http://www.gdyjqy.com/images/hover.gif) no-repeat center center", "color": "#FFF", "margin-top": "0" }).siblings().css({ "background": "none", "color": "#FFF", "border": "0", "margin-top": "1px" });
            clearInterval(auto);
        }).mouseout(function () {
            //auto = setInterval(showAuto, settings.timer);
        });

        auto = setInterval(showAuto, settings.timer);
        obj.hover(function () { clearInterval(auto) }, function () { auto = setInterval(showAuto, settings.timer); }); //·Åµ½´óÍ¼Í£Ö¹ÇÐ»»
        function showAuto() {
            na = na >= (counta - 1) ? 0 : ++na;
            if (na >= counta) return;
            $("div", obj).filter(":visible").fadeOut(200, function () { $(this).parent().children().eq(na).fadeIn(300); });
            $(settings.menu + " li").eq(na).css({ "background": "url(http://www.gdyjqy.com/images/hover.gif) no-repeat center center", "color": "#FFF", "margin-top": "0" }).siblings().css({ "background": "none", "color": "#FFF", "border": "0", "margin-top": "1px" });
        }
    }
});

