$(document).ready(function () {
	$('.promo')
		.click(function() {
			// A click on the div is the same as a click on the link itself.
			var href = $(this).find('.promoLink').attr('href');
			window.location = href;
		})
		.hover(function() {
			$(this).addClass('hover');
		}, function() {
			$(this).removeClass('hover');
		});
});