/*
*/
window.addEvent('domready', function() {
	$$('.mail').each(function(mailLink) {
		mailLink.addEvent('click', function() {
			var roheMail = this.get('rel');
			var mail = roheMail.replace(' at ', '@');
			mail = mail.replace(' dot ', '.');
			document.location.href = 'mailto:'+mail;
		});
	});
});
