$(document).ready(function(){
	$('.box, .footer, .navlink').map(function() {
		if($(this).find('a').attr('href')) {
			$(this).css('cursor', 'pointer');
			$(this).click(function() {
				window.location = $(this).find('a').attr('href');
			});
		}
	});
});

