function makeMailLinks(element){
	element.each(function(){
		var current = $(this);
		var theAddress	= current.text().replace(/ \(at\) /, "@");
		var title		= current.attr('rel');
				
		if(title!=undefined) {
			var link = title;
		}
		else {
			var link = theAddress;
		}
		current.replaceWith($('<a href="mailto:'+theAddress+'">'+link+'</a>'));
	});
}
