$(document).ready(function(){
	$('h2').css('cursor', 'pointer').click(function(){
		document.location = $('h2 a').attr('href');
	})
});
