//-------------------------------------------------------------------------------------------------
//	Populates the element #basketSummary with the contents of the basket, aquired from an
//	AJAX call to buy-online-basket-summary.asp.
//-------------------------------------------------------------------------------------------------

$(document).ready(function()
{
	//Send the ajax request
	$.ajax(
	{
		type: "POST",
		url: "buy-online-basket-summary.asp",
		data: "",

		success: function(basketContents)
		{
			$("#basketSummary").html(basketContents);
		}
	});
});