$(document).ready(function () {
	$('.email_obfuscated').each(function() {
		var $e = $(this),
			email = $e.text().replace('*AT*', '@').replace('-DOT-', '.', 'g'),
			title = $e.attr('title');
		$e.replaceWith('<a href="mailto:' + email + '">' + title + '</a>');
	});
});
