function emailLink() {
	$$('.email').each(function(el) {
		
		var anchor = new Element('a', {
			href: 'mailto:' + el.getProperty('rel').replace('|','@'),
			'class': el.getProperty('class'),
			'text': el.getProperty('text')
		}).replaces(el);
	});
}

