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