$(function () {
	$('a.mailto').each(function(){
	var to_replace = ' [at-no-spam] ';
		$(this).html(
			$(this).html().replace(to_replace, '@')
		).attr('href',$(this).attr('href').replace(to_replace, '@'));
		});
	});
