(function($) {
    $.extend($.browser, {
        client: function() {
            return {
                width: document.documentElement.clientWidth,
                height: document.documentElement.clientHeight,
                bodyWidth: document.body.clientWidth,
                bodyHeight: document.body.clientHeight
            };
        },
        scroll: function() {
            return {
                width: document.documentElement.scrollWidth,
                height: document.documentElement.scrollHeight,
                bodyWidth: document.body.scrollWidth,
                bodyHeight: document.body.scrollHeight,
                left: document.documentElement.scrollLeft + document.body.scrollLeft,
                top: document.documentElement.scrollTop + document.body.scrollTop
            };
        },
        screen: function() {
            return {
                width: window.screen.width,
                height: window.screen.height
            };
        },
        isIE6: $.browser.msie && $.browser.version == 6,
        isMinW: function(val) {
            return Math.min($.browser.client().bodyWidth, $.browser.client().width) <= val;
        },
        isMinH: function(val) {
            return $.browser.client().height <= val;
        }
    })
})(jQuery);
(function($) {
    $.widthForIE6 = function(option) {
        var s = $.extend({
            max: null,
            min: null,
            padding: 0
        },
        option || {});
        var init = function() {
            var w = $(document.body);
            if ($.browser.client().width >= s.max + s.padding) {
                w.width(s.max + "px");
            } else if ($.browser.client().width <= s.min + s.padding) {
                w.width(s.min + "px");
            } else {
                w.width("auto");
            }
        };
        init();
        $(window).resize(init);
    }
})(jQuery);
(function($) {
    $.fn.hoverForIE6 = function(option) {
        var s = $.extend({
            current: "hover",
            delay: 10
        },
        option || {});
        $.each(this,
        function() {
            var timer1 = null,
            timer2 = null,
            flag = false;
            $(this).bind("mouseover",
            function() {
                if (flag) {
                    clearTimeout(timer2);
                } else {
                    var _this = $(this);
                    timer1 = setTimeout(function() {
                        _this.addClass(s.current);
                        flag = true;
                    },
                    s.delay);
                }
            }).bind("mouseout",
            function() {
                if (flag) {
                    var _this = $(this);
                    timer2 = setTimeout(function() {
                        _this.removeClass(s.current);
                        flag = false;
                    },
                    s.delay);
                } else {
                    clearTimeout(timer1);
                }
            })
        })
    }
})(jQuery);
(function($) {
    $.extend({
        _jsonp: {
            scripts: {},
            counter: 1,
            charset: "gb2312",
            head: document.getElementsByTagName("head")[0],
            name: function(callback) {
                var name = '_jsonp_' + (new Date).getTime() + '_' + this.counter;
                this.counter++;
                var cb = function(json) {
                    eval('delete ' + name);
                    callback(json);
                    $._jsonp.head.removeChild($._jsonp.scripts[name]);
                    delete $._jsonp.scripts[name];
                };
                eval(name + ' = cb');
                return name;
            },
            load: function(url, name) {
                var script = document.createElement('script');
                script.type = 'text/javascript';
                script.charset = this.charset;
                script.src = url;
                this.head.appendChild(script);
                this.scripts[name] = script;
            }
        },
        getJSONP: function(url, callback) {
            var name = $._jsonp.name(callback);
            var url = url.replace(/{callback};/, name);
            $._jsonp.load(url, name);
            return this;
        }
    });
})(jQuery);

(function(a) {
    a.fn.jdTab = function(d, i) {
        if (typeof d == "function") {
            i = d;
            d = {};
        }
        var k = a.extend({
            type: "static",
            auto: false,
            source: "data",
            event: "mouseover",
            currClass: "curr",
            tab: ".tab",
            content: ".tabcon",
            itemTag: "li",
            stay: 5000,
            delay: 100,
            mainTimer: null,
            subTimer: null,
            index: 0
        },
        d || {});
        var f = a(this).find(k.tab).eq(0).find(k.itemTag),
        b = a(this).find(k.content);
        if (f.length != b.length) {
            return false;
        }
        var c = k.source.toLowerCase().match(/http:\/\/|\d|\.aspx|\.ascx|\.asp|\.php|\.html\.htm|.shtml|.js|\W/g);
        var j = function(m, l) {
            k.subTimer = setTimeout(function() {
                e();
                if (l) {
                    k.index++;
                    if (k.index == f.length) {
                        k.index = 0;
                    }
                } else {
                    k.index = m;
                }
                k.type = (f.eq(k.index).attr(k.source) != null) ? "dynamic": "static";
                h();
            },
            k.delay);
        };
        var g = function() {
            k.mainTimer = setInterval(function() {
                j(k.index, true);
            },
            k.stay);
        };
        var h = function() {
            f.eq(k.index).addClass(k.currClass);
            switch (k.type) {
            default:
            case "static":
                var l = "";
                break;
            case "dynamic":
                var l = (c == null) ? f.eq(k.index).attr(k.source) : k.source;
                f.eq(k.index).removeAttr(k.source);
                break;
            }
            if (i) {
                i(l, b.eq(k.index), k.index);
            }
            b.eq(k.index).show();
        };
        var e = function() {
            f.eq(k.index).removeClass(k.currClass);
            b.eq(k.index).hide();
        };
        f.each(function(l) {
            a(this).bind(k.event,
            function() {
                clearTimeout(k.subTimer);
                clearInterval(k.mainTimer);
                j(l, false);
                return false;
            }).bind("mouseleave",
            function() {
                if (k.auto) {
                    g();
                } else {
                    return;
                }
            });
        });
        if (k.type == "dynamic") {
            j(k.index, false);
        }
        if (k.auto) {
            g();
        }
    };
})(jQuery);
(function(a) {
    a.fn.jdSlide = function(k) {
        var p = a.extend({
            width: null,
            height: null,
            pics: [],
            index: 0,
            type: "num",
            current: "curr",
            delay1: 100,
            delay2: 5000
        },
        k || {});
        var i = this;
        var g, f, d, h = 0,
        e = true,
        b = true;
        var n = p.pics.length;
        var o = function() {
            var q = "<ul style='position:absolute;top:0;left:0;'><li><a href='" + p.pics[0].href + "' target='_blank'><img src='" + p.pics[0].src + "' width='" + p.width + "' height='" + p.height + "' /></a></li></ul>";
            i.css({
                position: "relative"
            }).html(q);
            a(function() {
                c();
            });
        };
        o();

        var j = function() {
            var s = [];
            s.push("<div>");
            var r;
            var q;
            for (var t = 0; t < n; t++) {
                r = (t == p.index) ? p.current: "";
                switch (p.type) {
                case "num":
                    q = t + 1;
                    break;
                case "string":
                    q = p.pics[t].alt;
                    break;
                case "image":
                    q = "<img src='" + p.pics[t].breviary + "' />";
                default:
                    break;
                }
                s.push("<span class='");
                s.push(r);
                s.push("'><a href='");
                s.push(p.pics[t].href);
                s.push("' target='_blank'>");
                s.push(q);
                s.push("</a></span>");
            }
            s.push("</div>");
            i.append(s.join(""));
            i.find("span").bind("mouseover",
            function() {
                b = false;
                clearTimeout(g);
                clearTimeout(d);
                var u = i.find("span").index(this);
                if (p.index == u) {
                    return;
                } else {
                    d = setInterval(function() {
                        if (e) {
                            l(u);
                        }
                    },
                    p.delay1);
                }
            }).bind("mouseleave",
            function() {
                b = true;
                clearTimeout(g);
                clearTimeout(d);
                g = setTimeout(function() {
                    l(p.index + 1, true);
                },
                p.delay2);
            });
        };
        var l = function(r, q) {
            if (r == n) {
                r = 0;
            }
            f = setTimeout(function() {
                i.find("span").eq(p.index).removeClass(p.current);
                i.find("span").eq(r).addClass(p.current);
                m(r, q);
            },
            20);
        };
        var m = function(u, q) {
            var s = parseInt(h);
            var v = Math.abs(s + p.index * p.height);
            var t = Math.abs(u - p.index) * p.height;
            var r = Math.ceil((t - v) / 4);
            if (v == t) {
                clearTimeout(f);
                if (q) {
                    p.index++;
                    if (p.index == n) {
                        p.index = 0;
                    }
                } else {
                    p.index = u;
                }
                e = true;
                if (e && b) {
                    clearTimeout(g);
                    g = setTimeout(function() {
                        l(p.index + 1, true);
                    },
                    p.delay2);
                }
            } else {
                if (p.index < u) {
                    h = s - r;
                    i.find("ul").css({
                        top: h + "px"
                    });
                } else {
                    h = s + r;
                    i.find("ul").css({
                        top: h + "px"
                    });
                }
                e = false;
                f = setTimeout(function() {
                    m(u, q);
                },
                20);
            }
        };
        var c = function() {
            var q = [];
            for (var r = 1; r < n; r++) {
                q.push("<li><a href='");
                q.push(p.pics[r].href);
                q.push("' target='_blank'><img src='");
                q.push(p.pics[r].src);
                q.push("' width='");
                q.push(p.width);
                q.push("' height='");
                q.push(p.height);
                q.push("' /></a></li>");
            }
            i.find("ul").append(q.join(""));
            g = setTimeout(function() {
                l(p.index + 1, true);
            },
            p.delay2);
            if (p.type) {
                j();
            }
        };
    };
})(jQuery);

function getRandomDomain(a) {
    var b, a = String(a);
    switch (a.match(/(\d)$/)[1] % 5) {
    case 0:
        b = 10;
        break;
    case 1:
        b = 11;
        break;
    case 2:
        b = 12;
        break;
    case 3:
        b = 13;
        break;
    case 4:
        b = 14;
        break;
    default:
        b = 10;
    }
    return "http://img{0}.360buyimg.com/".replace("{0}", b);
}
function ResumeError() {
    return true;
}
window.onerror = ResumeError;
if ($.browser.isIE6) {
    try {
        document.execCommand("BackgroundImageCache", false, true);
    } catch(err) {}
};
var calluri = "http://fairyservice.360buy.com/WebService.asmx/MarkEx?callback=?";
var loguri = "http://csc.360buy.com/log.ashx?type1=$type1$&type2=$type2$&data=$data$&callback=?";
callback1 = function(data) {;
};
log = function(type1, type2, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) {
    var data = '';
    for (i = 2; i < arguments.length; i++) {
        data = data + arguments[i] + '|||';
    }
    var url = loguri.replace(/\$type1\$/, escape(type1));
    url = url.replace(/\$type2\$/, escape(type2));
    url = url.replace(/\$data\$/, escape(data));
    $.getJSON(url, callback1);
};
mark = function(sku, type) {
    $.getJSON(calluri, {
        sku: sku,
        type: type
    },
    callback1);
    log(1, type, sku);
};
function search(id, val) {
    var selKey = document.getElementById(id).value.replace(/#/g, "%23").replace(/\+/g, "%2b");
 	if(selKey.isNone()||(selKey=="您可输入产品名或企业名进行搜索")){
		alert("请输入搜索关键字")
		$("#"+id).focus();
		return false;
	}
/*	var url = "/list-0-tp--mk--pd--sp--k-"+encodeURIComponent(selKey)+".html";
	if(val=="free")url="/free"+url;
	if(val=="purchase")url="/purchase/list-0-pt--ts--k-"+encodeURIComponent(selKey)+".html";*/
	//document.write(url);
	var url = "/list-0-k-"+encodeURI(selKey)+".html";
	if(val=="inland")url="/inland"+url;
	if(val=="free")url="/free/list-0-tp--mk--pd--sp--k-"+encodeURI(selKey)+".html";
	if(val=="purchase")url="/purchase/list-0-pt--ts--k-"+encodeURI(selKey)+".html";
    window.location = url;
}
function login() {
    location.href = "/manage/?ReturnUrl=" + escape(location.href);
    return false;
}
function regist() {
    location.href = "/register.asp?ReturnUrl=" + escape(location.href);
    return false;
}
function setWebBILinkCount(sType) {
    try {
        if (sType.length > 0) {
            var js = document.createElement('script');
            js.type = 'text/javascript';
            js.src = 'http://counter.360buy.com/aclk.aspx?key=' + sType;
            document.getElementsByTagName('head')[0].appendChild(js);
        }
    } catch(e) {}
};
function gi_ga(s, name) {
    if (typeof(s) == "undefined") {
        return "";
    };
    s = "^" + s + "^";
    var b = s.indexOf("^" + name + "=");
    if ( - 1 == b) {
        return "";
    } else {
        b += name.length + 2;
    };
    var e = s.indexOf("^", b);
    return s.substring(b, e);
};

function gi_get_monitor_code(k, p) {
    return '<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="0" height="0"><param name="movie" value="http://js.miaozhen.com/a.swf"><param name="allowScriptAccess" value="always"><param name="FlashVars" value="caId=' + k + '&SPID=' + p + '&loc=' + document.location.href + '&ref=' + document.referrer + '"><embed src="http://js.miaozhen.com/a.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="always" type="application/x-shockwave-flash" width="0" height="0" FlashVars="caId=' + k + '&SPID=' + p + '&loc=' + document.location.href + '&ref=' + document.referrer + '"></embed></object>';
};
var gi_normal__ = new Object();
gi_normal__.deliver = function(arg) {
    if (arg.gi_automatchscreen && screen.width >= 1280) {
        arg.gi_width = arg.gi_width_w;
    };
    var ad = "";
    if (arg.gi_isautomonitorclick) {
        ad = '<div style="position: absolute; width: ' + arg.gi_width + 'px; height: ' + arg.gi_height + 'px; cursor: pointer; background-color: rgb(255, 255, 255); opacity: 0; filter:alpha(opacity=0);" onclick="window.open(\'' + arg.gi_ldp + '\',\'_blank\')"></div>';
    };
    if (arg.gi_type == "img") {
        ad += "<a target=\"_blank\" href=\"" + arg.gi_ldp + "\"><img height=\"" + arg.gi_height + "\" width=\"" + arg.gi_width + "\" border=\"0\" src=\"" + ((arg.gi_width == arg.gi_width_w) ? (arg.gi_src_w) : (arg.gi_src)) + "\"/></a>";
    } else if (arg.gi_type == "flash") {
        ad += '<embed src="' + ((arg.gi_width == arg.gi_width_w) ? (arg.gi_src_w) : (arg.gi_src)) + '" width="' + arg.gi_width + '" height="' + arg.gi_height + '" type="application/x-shockwave-flash" play="true" loop="true" menu="true" wmode="transparent"></embed>';
    };
    var gi_k = gi_ga(arg.gi_ldp, "k");
    var gi_p = gi_ga(arg.gi_ldp, "p");
    document.getElementById("miaozhen" + arg.gi_pid).innerHTML += ad + gi_get_monitor_code(gi_k, gi_p);
};
gi_focus__ = new Object();
gi_focus__.next = function() {
    var arg = gi_focus__.arg;
    if (arg.gi_automatchscreen && screen.width >= 1280) {
        arg.gi_width = arg.gi_width_w;
    };
    var ad_arr = arg.gi_ad_arr;
    gi_focus__.now %= ad_arr.length;
    var html = '<div onmouseover="clearInterval(gi_focus__.timer);" onmouseout="gi_focus__.timer=setInterval(gi_focus__.next,gi_focus__.arg.gi_interval);" style="width: ' + arg.gi_width + 'px; height: ' + arg.gi_height + 'px; cursor: pointer; background-color: rgb(255, 255, 255); position: relative; " onclick="javascript:window.open(\'' + ad_arr[gi_focus__.now].gi_ldp + '\',\'_blank\')">';
    var i;
    var ad = '';
    if (ad_arr[gi_focus__.now].gi_type == "img") {
        var ad = '<img style="display: block" src="' + ((arg.gi_width == arg.gi_width_w) ? (ad_arr[gi_focus__.now].gi_src_w) : (ad_arr[gi_focus__.now].gi_src)) + '" width="' + arg.gi_width + 'px" height="' + arg.gi_height + 'px" />';
    } else if (ad_arr[gi_focus__.now].gi_type == "flash") {
        var ad = '<embed src="' + ((arg.gi_width == arg.gi_width_w) ? (ad_arr[gi_focus__.now].gi_src_w) : (ad_arr[gi_focus__.now].gi_src)) + '" width="' + arg.gi_width + '" height="' + arg.gi_height + '" type="application/x-shockwave-flash" play="true" loop="true" menu="true" wmode="transparent"></embed>';
    };
    html = html + ad;
    for (i = 0; i < ad_arr.length; i++) {
        if (i == gi_focus__.now) {
            html += '<div onmouseover="gi_focus__.now=' + i + ';gi_focus__.next();" style="border: 1px solid #3b81cd; right:' + (18 * (ad_arr.length - i) - 18) + 'px; bottom: 0px; position: absolute; z-index: 10; width:15px;height:16px; cursor: pointer; background-color: #3b81cd; opacity: 1; filter:alpha(opacity=100); color:white; font-family:Arial; font-size:11px; text-align: center; vertical-align:middle; ">' + (i + 1) + '</div>';
        } else {
            html += '<div onmouseover="gi_focus__.now=' + i + ';gi_focus__.next();" style="border: 1px solid #3b81cd; right:' + (18 * (ad_arr.length - i) - 18) + 'px; bottom: 0px; position: absolute; z-index: 10; width:15px;height:16px; cursor: pointer; background-color: rgb(255, 255, 255); opacity: 1; filter:alpha(opacity=100); font-family:Arial; font-size:11px; text-align: center; vertical-align:middle; " >' + (i + 1) + '</div>';
        }
    };
    html += '</div>';
    document.getElementById("miaozhen" + arg.gi_pid).innerHTML = html;
    gi_focus__.now++;
};
gi_focus__.deliver = function(arg) {
    gi_focus__.arg = arg;
    var ad_arr = arg.gi_ad_arr;
    var newElement = document.createElement("div");
    newElement.innerHTML = gi_get_monitor_code(gi_ga(ad_arr[0].gi_ldp, "k"), gi_ga(ad_arr[0].gi_ldp, "p"));
    document.getElementById("miaozhen" + arg.gi_pid).parentNode.appendChild(newElement);
    gi_focus__.now = 0;
    gi_focus__.timer = setInterval(gi_focus__.next, arg.gi_interval);
    gi_focus__.next();
};
var gi_rotate__ = new Object();
gi_rotate__.deliver = function(arg) {
    var ad_arr = arg.gi_ad_arr;
    var i = ad_arr[0][Math.floor(Math.random() * ad_arr[0].l)];
    if (arg.gi_automatchscreen && screen.width >= 1280) {
        arg.gi_width = arg.gi_width_w;
    };
    var click = '<div style="position: absolute; width: ' + arg.gi_width + 'px; height: ' + arg.gi_height + 'px; cursor: ';
    click += 'pointer; background-color: rgb(255, 255, 255); opacity: 0; filter:alpha(opacity=0);" ';
    click += 'onclick="javascript:window.open(\'' + ad_arr[i].gi_ldp + '\',\'_blank\')"></div>';
    if (ad_arr[i].gi_type == "img") {
        var ad = '<img src="' + ((arg.gi_width == arg.gi_width_w) ? (ad_arr[i].gi_src_w) : (ad_arr[i].gi_src)) + '" width="' + arg.gi_width + '" height="' + arg.gi_height + '" />';
    } else if (ad_arr[i].gi_type == "flash") {
        var ad = '<embed src="' + ((arg.gi_width == arg.gi_width_w) ? (ad_arr[i].gi_src_w) : (ad_arr[i].gi_src)) + '" width="' + arg.gi_width + '" height="' + arg.gi_height + '" type="application/x-shockwave-flash" play="true" loop="true" menu="true" wmode="transparent"></embed>';
    };
    ad = click + ad;
    var gi_k = gi_ga(ad_arr[i].gi_ldp, "k");
    var gi_p = gi_ga(ad_arr[i].gi_ldp, "p");
    document.getElementById("miaozhen" + arg.gi_pid).innerHTML += ad + gi_get_monitor_code(gi_k, gi_p);;
};

//document.domain = "360buy.com";

var initScrollY = 0;
var proIDs = new Array();
function compare() {
    if ($("#compare").get(0) == null) {
        $("body").append("<div id=\"compare\" class=\"compare\"><div class=\"mt\"><h5>商品比较</h5><div class=\"extra\" onclick=\"clearCompare()\"></div></div><div class=\"comPro\"><ul class=\"mc\" id=\"comProlist\"></ul><div class=\"mb\"><input type=\"button\" value=\"对比所选商品\" class=\"btn\" id=\"compareImg\" onclick=\"openCompare()\"></div></div></div>");
        $("#compare").css({
            position: "absolute",
            top: "220px",
            right: "0px"
        });
        isCoo()
    }
    if ($.browser.msie) {
        var defaultY = document.documentElement.scrollTop;
        var perceH = 0.3 * (defaultY - initScrollY);
        if (perceH > 0) {
            perceH = Math.ceil(perceH)
        } else {
            perceH = Math.floor(perceH)
        }
        $("#compare").get(0).style.top = parseInt($("#compare").get(0).style.top) + perceH + "px";
        initScrollY = initScrollY + perceH;
        setTimeout("compare()", 50)
    } else {
        window.onscroll = function() {
            $("#compare").get(0).style.top = parseInt($("#compare").get(0).style.top) + "px";
            $("#compare").get(0).style.position = "fixed"
        }
    }
}
function clearCompare() {
    $("#comProlist").empty();
    $("#compare").hide();
    createCookie("compare", "");
    proIDs = new Array()
}
function addToCompare(checkobj, checkid, checkProName) {
    $("#compare").show();
    $(".comPro").show();
    var proIDsTemp = proIDs.join(".");
    if (proIDsTemp.indexOf(checkid) == -1) {
        if (proIDs.length < 3) {
            proIDs.push(checkid);
            $("#comProlist").append("<li id='check_" + checkid + "'><a title='删除' class='close' onclick='reduceCompare(" + checkid + ")'></a>" + checkProName + "</li>");
            writeCompare(checkid, checkProName)
        } else {
            alert("对不起，最多可以选择三种商品进行对比！")
        }
    } else {
        alert("对不起，您已经选择此商品！");
        return
    }
}
function reduceCompare(checkid) {
    $("#check_" + checkid).remove();
    $.each(proIDs,
    function(i, n) {
        if (checkid == n) {
            proIDs.splice(i, 1)
        }
    });
    var coo = readCookie("compare");
    var idindexstart = coo.indexOf(checkid);
    var idindexend = coo.indexOf("|||", idindexstart) + 3;
    var delStr = coo.substring(idindexstart, idindexend);
    var innerStr = coo.replace(delStr, "");
    createCookie("compare", innerStr);
    if (proIDs.length == 0) {
        $(".comPro").hide()
    }
}
function openCompare() {
    switch (proIDs.length) {
    case 1:
        alert("对不起，最少选择两种商品进行对比！");
        break;
    case 2:
        window.open("http://www.360buy.com/pcompare.aspx?s1=" + proIDs[0] + "&s2=" + proIDs[1]);
        break;
    case 3:
        window.open("http://www.360buy.com/pcompare.aspx?s1=" + proIDs[0] + "&s2=" + proIDs[1] + "&s3=" + proIDs[2]);
        break;
    default:
        alert("请选择2-3件商品进行对比！");
        return
    }
}
function writeCompare(checkid, checkProName) {
    var compareList = readCookie("compare");
    if (compareList == null) {
        compareList = ""
    }
    compareList += checkid + "||" + escape(checkProName) + "|||";
    createCookie("compare", compareList)
}
function isCoo() {
    var coo = readCookie("compare");
    if (coo) {
        var cootemp = coo.split("|||");
        var compareListTemp = "";
        for (var i = 0; i < cootemp.length - 1; i++) {
            compareListTemp += "<li id='check_" + cootemp[i].split("||")[0] + "'><a title='删除' class='close' onclick='reduceCompare(" + cootemp[i].split("||")[0] + ")'></a>" + unescape(cootemp[i].split("||")[1]) + "</li>";
            proIDs.push(cootemp[i].split("||")[0])
        }
        $("#comProlist").html(compareListTemp);
        $("#compare").show();
        $(".comPro").show()
    }
}
function createCookie(name, value, days, Tdom) {
    var Tdom = (Tdom) ? Tdom: "/";
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
        var expires = "; expires=" + date.toGMTString()
    } else {
        var expires = ""
    }
    document.cookie = name + "=" + value + expires + "; path=" + Tdom
}
function readCookie(name) {
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for (var i = 0; i < ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) == ' ') {
            c = c.substring(1, c.length)
        }
        if (c.indexOf(nameEQ) == 0) {
            return c.substring(nameEQ.length, c.length)
        }
    }
    return null
}
function addToFavorite() {
    var a = "http://www.51huapao.com/";
    var b = "我要花炮-专业的网上花炮市场";
    if (document.all) {
        window.external.AddFavorite(a, b)
    } else if (window.sidebar) {
        window.sidebar.addPanel(b, a, "")
    } else {
        alert("对不起，您的浏览器不支持此操作!\n请您使用菜单栏或Ctrl+D收藏本站。")
    }
}
function asyncScript(A, B) {
    if (typeof A == "function") {
        var B = A,
        A = null
    }
    if (A) {
        if (typeof A != "string") {
            return
        }
        var x = document.createElement('script');
        x.type = 'text/javascript';
        x.async = true;
        x.src = A;
        var s = document.getElementsByTagName('head')[0];
        s.appendChild(x);
        if (B) {
            if (typeof B != "function") {
                return
            }
            if (!
            /*@cc_on!@*/
            0) {
                x.onload = function() {
                    B()
                }
            } else {
                x.onreadystatechange = function() {
                    if (x.readyState == 'loaded' || x.readyState == 'complete') {
                        B()
                    }
                }
            }
        }
    } else {
        if (!B) {
            return
        }
        setTimeout(function() {
            B()
        },
        0)
    }
};
var pannel = {};
pannel.gotop = {
    settings: {
        element: null,
        target: "#header"
    },
    init: function(option, callback) {
        var _this = this;
        $.extend(this.settings, option || {});
        if (callback) {
            callback()
        }
        var fn = function() {
            if (screen.width >= 1280) {
                _this.render(0)
            } else {
                _this.render(1)
            }
        };
        fn();
        $(window).bind("scroll",
        function() {
            fn()
        }).bind("resize",
        function() {
            fn()
        })

    },
    render: function(a) {
        var ele = $(this.settings.element),
        target = $(this.settings.target);
        var left, width, top = $.browser.scroll().top + $.browser.client().height - ele.height() - 10 + "px";
        switch (a) {
        case 0:
            width = (target.width() >= 1200) ? 1200 : 980;
            left = target.offset().left + width + "px";
            if ($.browser.isIE6) {
                ele.css({
                    "left": left,
                    "top": top
                })
            } else {
                ele.css({
                    "left": left,
                    "bottom": "0"
                })
            }
            break;
        case 1:
            if ($.browser.isIE6) {
                ele.css({
                    "right":
                    "0",
                    "top": top
                })
            } else {
                ele.css({
                    "right": "0",
                    "bottom": "0"
                })
            }
            break
        }
    }
};
function getRandomObj(A, R) {
    var x = 0;
    for (var i = 0; i < A.length; i++) {
        x += R[i] || 1;
        if (!R[i]) R.push(1)
    }
    var y = Math.ceil(Math.random() * x),
    z = [],
    m = [];
    for (var i = 1; i < x + 1; i++) {
        z.push(i)
    }
    for (var i = 0; i < A.length; i++) {
        m[i] = z.slice(0, R[i]);
        z.splice(0, R[i])
    }
    for (var i = 0; i < m.length; i++) {
        for (var j = 0; j < m[i].length; j++) {
            if (y == m[i][j]) {
                return A[i]
            }
        }
    }
}
function setRandomAds(A, R, O, flag) {
    var obj = getRandomObj(A, R),
    ele = document.getElementById(O),
    img;
    if (!obj) {
        return
    }
    if (flag && screen.width >= 1280) {
        obj.width = obj.width2;
        obj.url = obj.url2
    } else {
        obj.width = obj.width;
        obj.url = obj.url
    }
    img = "<a href='" + obj.link + "' target='_blank'><img width='" + obj.width + "' height='" + obj.height + "' alt='" + obj.alt + "' app='image:poster' src='" + obj.url + "' /></a>";
    if (ele) ele.innerHTML = img
};
/*
	@Last-Modified:2011/04/11
*/
(function($) {
    $.fn.addToCart = function(option) {
        var s = $.extend({
            current: "click",
            delay: 10
        },
        option || {});
        $.each(this,
        function() {
			var re = /[^\d\.]/g;
			var t=$(this);
			
			var params={act:"add",pid:t.attr("pid"),title:t.attr("title"),photo:t.attr("photo"),price:t.attr("price").replace(re,'')==''?0:t.attr("price").replace(re,''),amount:1}
			     $(this).bind("click",
           		 function() {
					$.ajax({
						   type: "GET",
						   url: "/public/get/cart.asp",
						   cache:false,
						   dataType:"text",
						   data: $.param(params),
						   success: function(data){
							   
							 //alert(eval('('+data+')').message);
							 var o=eval('('+data+')');
							 if(o.status==1){
							 if(t.attr("gocart")=="1")goUrl('/shoppingcart.asp');
							 t.nextAll(".add_cart_span").html("<a href='/shoppingcart.asp' class='lnk_blue'>已加入购物车</a></br>").show();
							 cartLoadTop();
							 cartLoadIndex();
							 }else{
								alert(o.message)
							 	//par.addClass("txt_red"); 
							 }
						   }
					});
            })
        })
    }
})(jQuery);
(function($) {
    $.fn.deleteToCart = function(option) {
        var s = $.extend({
            current: "click",
            delay: 10
        },
        option || {});
		
        $.each(this,
        function() {
			var re = /[^\d\.]/g;
			var t=$(this);
			var params={act:"delete",pid:t.attr("pid")}
			
            $(this).bind("click",
           		 function() {
					
 					$.ajax({
						   type: "GET",
						   url: "/public/get/cart.asp",
						   cache:false,
						   dataType:"text",
						   data: $.param(params),
						   success: function(data){
							 var o=eval('('+data+')');
							 //alert(data);
							 if(o.status==1){
							 cartLoadTop();
							 cartLoadIndex();
							 $(".add_cart_span[pid='"+t.attr("pid")+"']").html("").hide();
							 }else{
								alert(o.message)
							 }
						   }
					});
            })
        })
    }
})(jQuery);
//快速加入购物车
function quickAddtoCart(){
	var skuID=$("#addSkuId").val();
	var skuNum=$("#addSkuNum").val();
	if(!(skuID.isInt()&&skuNum.isInt())){
									 alert("产品编号与数量必须为整数");
									 return false;
									 }
	var params={act:"quickadd",pid:skuID,amount:skuNum}
	$.ajax({
		   type: "GET",
		   url: "/public/get/cart.asp",
		   cache:false,
		   dataType:"text",
		   data: $.param(params),
		   success: function(data){
			   
			 //alert(eval('('+data+')').message);
			 var o=eval('('+data+')');
			 if(o.status==1){
			   goUrl('/shoppingcart.asp');
			 }else{
				alert(o.message)
			 }
		   }
	});
}
//顶部购物车加载
function cartLoadTop(){
	$("#mycart-list").load("/public/get/cart.asp?act=top&s="+Math.random());
}
//首页右侧购物列表
function cartLoadIndex(){
	 $("#right-cart-list").load("/public/get/cart.asp?act=right&s="+Math.random());
}
//消息提示
function cartShowAlert(message,obj)
{
   alert(message);
}
//改变总金额html
function setBottomTotalPrice(s){
	$("#cartBottom_price").text(s);
}
//取得显示值和隐藏值
function getShowItem(pid){
	return($("#txtChange"+pid));
}
function getHideItem(pid){
	return($("#hideChange"+pid));
}
//删除购物车中的商品
function removeProductOnShoppingCart(productId)
{
   if(confirm('确定不购买该商品？'))
   {  
       	$.get("/public/get/cart.asp",{act:"delete",pid:productId,rnd:Math.random()},function(data){
					 var o=eval('('+data+')');
					 if(o.status==1){
						 getShowItem(productId).parents("tr").remove();
						 setBottomTotalPrice(o.total);
					 }else{
						alert(o.message)
					 }
		});
      
   }
}
//清空购物车
function clearCart()
{
   if(confirm('确定清空购物车吗？'))
   {
         	$.get("/public/get/cart.asp",{act:"clear",rnd:Math.random()},function(data){
					 var o=eval('('+data+')');
					 if(o.status==1){
						 $(".cartItem").remove();
						 setBottomTotalPrice(o.total);
					 }else{
						alert(o.message)
					 }
		});
   }
}

//添加商品到购物车
function AddProduct(productId,productCount,obj)
{

}


//更改商品数量
function changeProductCount(productId)
{
	var showItem=getShowItem(productId);
	var hideItem=getHideItem(productId);
	
   if(!showItem.val().isInt()){cartShowAlert("您输入的格式不正确！",showItem);showItem.val(hideItem.val());return;}

   //判断为0的情况
   if(parseInt(showItem.val())==0)
   {
      removeProductOnShoppingCart(productId);
      return;
   }
   //判断有没有改变值
   if(showItem.val()===hideItem.val())return;
 	$.get("/public/get/cart.asp",{act:"update",pid:productId,amount:showItem.val(),rnd:Math.random()},function(data){
					 var o=eval('('+data+')');
					 if(o.status==1){
						 var pos=new getPos($(showItem)[0]);
						 setBottomTotalPrice(o.total);
						 showChangeSucTip(pos,'商品');
						 hideItem.val(showItem.val());
					 }else{
						alert(o.message)
					 }
				   });
  
}


function changeBar(type,pid)
{
    var showItem=getShowItem(pid);
    var change=type=='+'?1:-1;
    var num=parseInt(showItem.val());
    if(num+change<1)
    {
       alert('您输入的数字已经超出的最小值');
       return;
    }
    showItem.val(num+change);
    changeProductCount(pid);
}

//显示变更数量提示
function showChangeSucTip(pos,changeStr)
{
   closeWindow();
   pos.Top=pos.Top-84;
   pos.Left=pos.Left-(204-pos.Width)/2;
   var tipHtml="<div id='changeSucTip'><div id='tipContent'><div id='tipTitle'>"+changeStr+"数量修改成功！<br />商品金额为：<span id='priceSpan'>"+g('cartBottom_price').innerHTML+"</span>元<br /><a href='javascript:closeWindow()'>关闭</a></div></div></div>";

   showMessageBox(tipHtml,pos,204);
   var mWin=g('mesWindow');
   var isGrow=true;
   if(isIe){
   //
   try{
   //obj.filters.alpha.opacity=90;
   mWin.style.filter='alpha(opacty=90)';
   }catch(e){isGrow=false;}
   }
    else{mWin.style.opacity=0.9;}
   if(isGrow){setTimeout(function(){setGrowHidden(mWin,3,10);},4000);}
   else{setTimeout(function(){closeWindow();},4000);}
}
