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