$(window).load(function () {
	$('#promo .box').each(function (index, element) {
		$(element).click(function() {
			window.location.href = $(element).attr('rel');
		});
	});
});

