// JavaScript Document

function GetCartCount(id){
		jQuery.post('GetCartCount.php',
			{
				sn:escape(id)
			},
			function(data){
				jQuery("#car_num").html(data);
			}
		);
}
