<!--
/**
 * exd_first_refresh_block.js
 * --------------------------
 * 
 * @author Jeff Clarke (cjeffrey4)
 * @version 0.1 - September 26, 2006
 * 
 * On 9/2/06 ad ops reported that ads were double-counting on MBKs.  This was due to a 
 * Flash call to refresher.refresh_ads on Flash load.  This blocks that first call to 
 * ad refresh, but allows all subsequent calls to pass through.
 */



top.exd_space.refresher.adRefreshCount = 0;
	
top.exd_space.refresher.refresh_ads_old = top.exd_space.refresher.refresh_ads;
top.exd_space.refresher.refresh_ads = function(){
	if (++this.adRefreshCount >1){
		this.refresh_ads_old();
	}
};

-->