addEvent(window, 'load', function() { prepEmailLinks(); });function prepEmailLinks() {	var l = document.links;	var a = / \[at\] /g;	var d = / \[dot\] /g;	for (i=0; i<l.length; i++) {		if (l[i].rel == 'email') {			var t = l[i].title;			var e = l[i].firstChild;			e.data = e.data.replace(a,'@');			e.data = e.data.replace(d,'.');			l[i].href += e.data;			while (l[i].hasChildNodes()) l[i].removeChild(l[i].firstChild);			l[i].appendChild(document.createTextNode(t));		}	}}