$(document).ready(function(){

	$('#content-foot .link').css('cursor','pointer').click(function(){
		
		window.location = $(this).find('h2 a').attr('href');
	});
});