/* Javascript for Corpus Christi Catholic School */
/* Created by 1944 (mcmxliv.com) */

$(document).ready(documentReady);
function documentReady() {
	$('.email_fix').map(email_fix);
}
function email_fix () {
	$(this).html('<a href="mailto:'+$(this).html().replace(' [ at ] ','@').replace('/','').replace(':','.')+'" title="Email '+$(this).html().replace(' [ at ] ','@').replace('/','')+'">'+$(this).html().replace(' [ at ] ','@').replace('/','')+'</a>');	
}
