  $(document).ready(function(){
	if($('#custom_promo')){
		var promoPre = '/includes/promos/';
		var promoUrl = '';
		var usertype='unknown';
		if(checkLoggedIn()){ usertype=getUserType();
		}else{ usertype=getUserImpression();
		}
		if(usertype!='unknown'){ promoUrl=promoPre+usertype+window.location.pathname;
		}else{ promoUrl=promoPre+'public'+window.location.pathname;
		}
		$('#custom_promo').load(promoUrl);
	}
  });