$(document).ready(function() {	
	$('.content div:first-child').css('cursor','pointer').click(function() {
		var href = $(this).find('h2 a').attr('href');	
		document.location.href = href;
	});
});