var basketTotal = $.cookie('BasketTotal');
var basketSize = $.cookie('BasketSize');

if (undefined == basketTotal) {
	basketTotal = '&pound;0.00';
} else {
	basketTotal = $.base64Decode(basketTotal);
}

if (undefined == basketSize) {
	basketSize = 0;
}
