window.addEvent('domready',function(){
	if ( document.location.search.length == 0 ) {
			$$('a[href=#emailthis]').each(function(link){
			var theEmail = link.getText().replace(' [at] ','@').replace(' [dot] ','.');
			link.setText(theEmail).setProperty('href','mailto:'+theEmail);
		});
	}
});

