$(document).ready(function() {
	regex = /\b([A-Z0-9._%-]+)\{(.+)\}((?:[A-Z0-9-]+\.)+[A-Z]{2,6})\b/gi; 
	mailto = '<a href="mailto:$1@$3" title="$2">$1@$3</a>';
	return $(".email").each(function() { 
		defuscated = $(this).html().replace(regex, mailto);
		$(this).html(defuscated); 
	});
});