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

