$(document).ready(function(){
	check_cart();
});



function check_cart(){
	$.post("/check_header_cart.php",{id:"0"},function(data,textStatus){
	if(textStatus=='success')	
		{
    $('#cart').empty().append('<span><a href="/order.php?=QnchNGdzlGbENTJ0NWY2ITJ1cTY3M2M4Q0MlUGZvNmd" class="cart">ショッピング・カート</a></span>');
		}
			},"json");	

}
