window.addEvent('load',function(){
	$$('a[name=email]').each(function(theLink){
		var theMailto = theLink.getText().replace('[at]','@');
		theLink.setProperty('href','mailto:'+theMailto).setText(theMailto);
	});
});