$(document).ready(function(){
	$("#checkbox input[type='checkbox']").click(function () {
		$("#count_ithem").load("/ajax/basket.ajax?pro_id=" + $(this).attr("id") + "&count=" + $("#count_" + $(this).attr("id")).val());
	});
});

function payBu(order_id){
	//location.href = '/profile/pay.html?order_id=' + $('#order_id').attr(id);
	alert(order_id);

}
