$(function(){
	$('.ext').each(function(){
		this.href = $(this).find('a').attr('href');
		$(this).hover(function(){
			$(this).css('cursor', 'pointer');
			$(this).find('a').css('text-decoration', 'underline');
		},
		function(){
			$(this).css('cursor', 'default');
			$(this).find('a').css('text-decoration', 'none');
		});
		$(this).click(function(){
			location.href = this.href;
		});
	});
});
