//Set the first name in the span to the name of their e-mail address
$(document).ready(function() {		
	var x = 'ma', y = 'to', z = 'il', d1="m", d2="e", e="com", ah = '@', uiwo;
	$('.idk').each(function() {
		var ioio = $(this).text();
		var or	= ioio;
		ioio = ( ioio.indexOf(' ') != -1 )? ioio.substring(0, ioio.indexOf(' ')): ioio;
		if( or == 'Anna Geivett' ) {
			ioio += 'e';
		}
		$(this).css({textDecoration: 'underline', cursor: 'pointer'});
			$(this).click(function() {
			uiwo = x+z+y+':'+'ecc'+ioio+ah+d1+d2+'.'+e;
			location = uiwo;
		});
		$(this).hover(function() {
			this.iuy = $(this).text();
			$(this).text('ecc'+ioio+ah+d1+d2+'.'+e);
		}, function() {
			$(this).text(this.iuy);
		});
	});
});