$(document).ready(function(){
	$('a').each(function(){
		if(/(at)/.test($(this).attr('href')) && /mailto/.test($(this).attr('href'))) {
			$(this).attr('href',$(this).attr('href').replace('(at)','@'));
			$(this).html($(this).html().replace('(at)','@'));
		}
	});
});