function makeMailLinks(element){
	element.each(function(){
		var theAddress = $(this).text().replace(/ \(at\) /, "@");
		$(this).replaceWith($('<a href="mailto:'+theAddress+'">'+theAddress+'</a>'));
	});
}
