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