function startReload(theContext, currentDealId, currentSoldOut, currentActive) {
	jQuery.noConflict();
	jQuery.ajaxSetup({
		  cache:false,
		  async:false
		});
	gds = null;
	path="/deals/current/json/"+ new Date().getTime();
	url = theContext+path;
	jQuery.getJSON(path, function(data){
		newDealId = data.dealId;
		changed = false;
		if (currentDealId != newDealId) {
			location.reload();
			changed = true;
		};
		if ((currentSoldOut != data.soldOut)) {
			jQuery(".containerLeftHome").load(location.href+" .containerLeftHome>*","")
			changed = true;
		}
		if (changed) {
			jQuery("#reloadCatcher").load(location.href+" #reloadCatcher>*","")
		}
		//alert(data.dealsReserved);
	});
	
}

