$(document).ready(function() {
	// unobfuscate email address
	href = $('a').each(function() {
		href = $(this).attr('href').replace(/\ ?\[at\]\ ?/g, '@');
		$(this).attr('href', href);
	});
});
