// ---------------------------------------------------------------------
//                          e-mail link writer
// ---------------------------------------------------------------------

function scott_email() {
	if (!document.getElementsByTagName) { return; }
	var scott_uname = 'scott';
	var scott_email = scott_uname + unescape('%40') + 'swarthmore.edu';
	var scott_email_link = '<a href="mailto:' + scott_email + '">' + scott_email + '</a>';
	var all_spans = document.getElementsByTagName('span');
	for (var i=0; i < all_spans.length; i++) {
		if (all_spans[i].className == 'scott_email') {
			all_spans[i].innerHTML = scott_email_link;
		}
	}
}


// ---------------------------------------------------------------------
//                            onload handler
// ---------------------------------------------------------------------

window.onload = function() {  scott_email();  }

