$(document).ready(
	function() {
		$("a.contatti").click(
			function() {
				this.href = 'mailto:' + $(this).html();
				return true;
			}
		);
	}
);