window.onload = function() {

	if ( document.getElementsByTagName ) {
		theLinks = document.getElementsByTagName('a');
		for ( a = 0 ; a < theLinks.length ; a++ ) {
			if ( theLinks[a].name == 'email' ) {
				theLink = theLinks[a].innerHTML.replace('[at]','@');
				theLinks[a].href = 'mailto:'+theLink;
				theLinks[a].innerHTML = theLink;
			}
		}
	}

}