
function buy(id)
{
	$('#cart').html('<img src="ajax-loader.gif" width=32 height=32><br />Updating cart...');
	$.ajax({
		type: 'GET',
		url: 'add-cart.php',
		dataType: 'html',
		data: 'id='+id,
		success: function(msg){
			$('#cart').html(msg);
		}
	});
}

function check_cart()
{
	$('#cart').html('<img src="ajax-loader.gif" width=32 height=32><br />Updating cart...');
	$.ajax({
		type: 'GET',
		url: 'check-cart.php',
		dataType: 'html',
		success: function(msg){
			$('#cart').html(msg);
		}
	});
}

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