function add2cart(id){
	var myid = '';
	if(!isNaN(Number(id))){
		myid = id;
		$("#addBtn_"+id).html();
	}
	$.ajax({
		type: "GET",
		url: "add2cart.php",
		data: "item_id="+myid,
		success: updateMyCart
	});
}


function updateMyCart(msg){
	var s = msg.split(":");
	if(s[0]!='' && s[0]!=0){  //remove add to cart btn
		var b = $("#addBtn_"+s[0]);
		b.removeAttr('onclick')
		.html("Quick Checkout")
		.attr('href','mycart.php');
		
	}
	$("#mycart strong:first").html(s[1]);
}
