$(function(){

	$.ajax({
		url: "/commonForm/Cart.action?cartType="+"&items="+"&cookieName=ch2cookie&action=" + "&localeName=en_US",
		type: "get",
		dataType: "xml",		
		success: function(xml) {		
				
				//alert("url:" + this.url);				
				var code = $(xml).find('code').text() || 0;
				//alert("code:" + code);
				
				var message = $(xml).find('message').text();				
				$("#cartId").text(code);
								  				  
		},
			  
	   error: function() {
	    //alert("請稍後再試");
	  }
	});

});
