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