// When document is ready
$(document).ready(function() {
	
	// Register a click handler for the basket
	$('#basket').click(function() {
		// Submit the form
		$('form', this).submit();
	});
});

