$(document).ready(function(){
	
	
	$('a.content').each(function(){
		
		//console.debug($(this).attr('href'));
		
		if($(this).attr('href') == '/index.php/ita/Corse/Statistiche'){			
			
			$(this).attr('href','');
			
			$(this).bind("click", function(e){return false;});

			
			/**
			var html_content = $(this).html();
			
			//console.debug(html_content);
			
			$(this).parent().html(html_content);
			
			$(this).remove();
			
			**/
			
		}		
	});
	
});
