var Convert = {
	initialize: function() {
		var spans = document.getElementsByTagName("span");
		for (var i = 0; i < spans.length; i++) {
			if(spans[i].getAttribute("class") == "address") {
				string = spans[i].childNodes[0].nodeValue;
				email = string.split("_")[0] + "@" + string.split("_")[2];
				spans[i].innerHTML = '<a href="mailto:' + email + '">' + email + '</a>';
			}
		}
	}
}
window.onload = Convert.initialize;

/* 
Use this script to allow regular email links on sites while keeping them safe from spam bots. Include email addresses in the following format inside a span tag:
<span class="address">workwithme_at_ryanfait.com</span>
*/