jQuery(function() {

	$(document).ready(function() {
		
		$('span.mt').each(function() {
			var html = $(this).html();
			html = html.replace(/ dot /gi, '.');
			html = html.replace(/ at /gi, '@' );
			$(this).html('<a href="mailto:'+html+'" title="Get in touch">'+html+'</a>');
			
		});
	});
});
