$(document).ready(function(){
	$("#dcar").dialog({
		bgiframe: true,
		autoOpen: false,
		height: 180,
		width:300,
		modal: true
		});
	$(".fclass").ajaxForm({
		success:function(res){
			if(res.indexOf("success:")!=-1)
			{	var r = res.split(":");
				$("#tgcount").html("您的购物车中有<a class='shopcar1' href='/order/viewOrderCart.action'>"+r[1]+"</a>件商品");
				$("#smoney").html(r[1]);
				$("#sgoodTmo").html(r[2]);
				$("#dcar").dialog('open');
			}
		}
	});
	$("#bgobuy").click(
			function() {
				$("#dcar").dialog('close');
			}
		);
		$("#cshowcar").click(
			function() {
				location.href="/order/viewOrderCart.action";
			}
		);
}
)
