/* No, it's not unobtrusive, but this is only one page so a DOMcontentLoaded script seems like overkill */
function linkEmail() {
	if(document.getElementById) {
		var e = document.getElementById("email");
		if(e) {
			e.innerHTML = '<a href="mailto:john@johnriviello.com">john@johnriviello.com</a>';
		}
	}
}
linkEmail();