var shoppingcart_cookieName="shoppingcart";var addressId_cookieName="addressId";var lastclickproductlist_cookieName="lcpids";function setCart(d){var e=$.json.decode($.cookie.get(shoppingcart_cookieName)||"[]");var b=true;for(var c=0,a=e.length;c<a;c++){if(e[c].id==d.id){b=false;if(d.amount==0){e.splice(c,1)}else{e[c]=d}break}}if(b){e.push(d)}$.cookie.set({name:shoppingcart_cookieName,value:$.json.encode(e),expires:new Date(new Date().getTime()+2592000000)});$(function(){$(".textcartno").html(getCart().length)})}function getCart(){return $.json.decode($.cookie.get(shoppingcart_cookieName)||"[]")}function clearCart(){$.cookie.remove(shoppingcart_cookieName);$(function(){$(".textcartno").html(0)})}function addToCart(a){var c=getCart();var b=1;c.each(function(d){if(d.id==a){b+=d.amount}});setCart({id:a,amount:b});$.jGrowl(String.format("已成功将该商品添加到购物车中!<br />目前购物车中有{0}件同类商品.",b))}var addattention_url="/account/addattention.html";function addToNotice(a){if(!hasLogon){alert("请先登录!");return}$.post(addattention_url,{pId:a,atype:2},function(c){var b=$.json.decode(c);if(b){$.jGrowl("已添加到到货通知!")}else{$.jGrowl("该商品已在到货通知列表里,不能在添加!")}})}function addToFavorite(a){if(!hasLogon){alert("请先登录!");return}$.post(addattention_url,{pId:a,atype:1},function(c){var b=$.json.decode(c);if(b){$.jGrowl("已添加到收藏夹!")}else{$.jGrowl("该商品已在收藏夹列表里,不能在添加!")}})};