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