function clickMe(promoId){
	if (document.getElementById(promoId)) {
		var promo = document.getElementById(promoId);
		var promoLink = promo.getElementsByTagName('a')[0].getAttribute('href');
		promo.style.cursor = 'pointer';
		promo.onclick = function(){
			document.location = promoLink;
		}
	}
}
clickMe('promo');
clickMe('promo1');
clickMe('promo2');