jQuery.fn.mailto = function() {
	return this.each(function(){
		var email = $(this).html().replace(/\s*\(.+\)\s*/, "@");
		var email_text = 'Email Dani Alves';
		$(this).before('<a href="mailto:' + email + '" rel="nofollow" title="Email ' + email + '">' + email_text + '</a>').remove();
	});
};
