$(function(){
	$('span.ma').each(function(){
		var ma = '';
		if($(this).attr('title')){
			ma = $(this).attr('title').replace(/#/,'@');
			$(this).after('<a href="mailto:'+ma+'">'+$(this).html()+'</a>')
			$(this).remove();
		}else{
			ma = $(this).text().replace(/#/,'@');
			$(this).after('<a href="mailto:'+ma+'">'+ma+'</a>')
			$(this).remove();
		}
	});
});

