function makeMailToAnchors() {
	// Hide you addresses from address harvesters and then
	// make them useful on the fly when someone clicks on them
	// Set the alt attribute of your anchor to the mailto
	// address with the @ symbol replaced by " [at] ".
	// 
	// This code will find those and when they are clicked,
	// create a valid mailto: anchor on the fly for the user.
	//
	$("a[@alt*= at ]").click(function() {
		$(this).attr("href", "mailto:" + $(this).attr("alt").replace(" at ", "@") + "?Subject=[UVIT Contact]: " );
	})
}

function addClickHandlers() {
	makeMailToAnchors();
}

// When the doc loads, this line will cause it to execute the functions
// once the DOM is ready.
//
$(document).ready(addClickHandlers);

