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