$(function() {
	$('.remove_item').click(removeItemFromCart);
});

function removeItemFromCart(e)
{
	$.ajax({
		type: 'POST',
		url: moneytreeURL+"php/remove_from_basket.php",
		cache: false,
		data: ({productid : $(this).attr('rel')}),
		success: function(html){
			document.location = 'index.php?page_id=18';
		}
	});
}
