function basketUpdate(basketCount, basketAmount) {
	getElement("basket").className = "filled";
	getElement("basketTitle").innerHTML = '<p><a title="View your shopping basket contents" href="/shop-basket.html">' + basketCount + ' item' + (basketCount > 1 ? 's' : '') + ' for &pound;' + basketAmount + '</a></p>';
}
