$(function(){

	$(".emailAddress").each(function(){
		var el = $(this),
			txt = $.trim(el.text())
				.replace(/\s?AT\s?/, "@")
				.replace(/\s?\(at\)\s?/, "@")
				.replace(/\s?DOT\s?/, ".");
			
		el.html("<a href='mailto:" + txt + "'>" + txt + "</a>");
	});
		

});
