$(document).ready(function()
{
	$(".mail").each(function()
	{
		var mail = this.innerHTML.replace('[at]', '@');
		var a = document.createElement("a");
		a.href = "mailto:" + mail;
		a.appendChild(document.createTextNode(mail));
		$(this).replaceWith(a);
	});
});
