// JQuery-enabled version of Javascript SPCM email de-obfuscator
// February 2008 -- invertStr(moc.liamg@edudlexip);
// --

// Email Link De-obfuscation function //
function mailtoEnabler() {
	$('a.emObfusc').each( function() {
		var cryptEm = $(this).html();
		var deCrypt = "";
		for (i = cryptEm.length - 1; i >= 0; i--) {
			deCrypt += cryptEm.charAt(i);
		};
		$(this).attr('href', "mailto:" + deCrypt);
		$(this).html(cryptEm);  // <-- Looks redundant, but seems IE needs this to get it right :(
	} );
}
