// script run to get contents of basket and put in header.  Relies on JQuery to be present
// only currently runs the following on mag sites (not forum or shop).  Testing on forum currently
$.ajax({
	url: 'http://shop.keypublishing.com/basket_json.asp?jsoncallback=?',
	dataType: 'json', 
	cache: false, // 'cache: false' must be present for IE 7 & 8
	success: function(data) {
		var itemCount = data.itemCount;
		if(itemCount>0) {
			var itemText = " item";
			if(itemCount>1) { itemText+="s"; }
// one of these will need removing once we sort out the dropdowns
			$('#headerTabs #shopLink').add('.sf-menu #shopLink').append("<strong> ("+itemCount+itemText+", "+data.totalPrice+")</strong>");
//			$('.sf-menu #shopLink').append("<strong> ("+itemCount+itemText+", "+data.totalPrice+")</strong>");
		}
	}
});
