window.addEvent('domready', function() {
	$$('a.email').each(function(a){
		a.set('html',a.get('html').replace('//', '@').replace(/\//g, '.'));
		a.setProperty('href',a.getProperty('href').replace('//','@').replace(/\//g,'.'));	
	});
});

