$(document).ready(function(){
	$("span.mailto").each(function(){
		var addr = $(this).text().replace(/ at /,"@").replace(/ dot /g,".");
		var link = ($(this).attr('title') == "") ? addr : $(this).attr('title');

		$(this).after('<a href="mailto:'+addr+'">'+ link + '</a>');
		$(this).remove();
	})
})
