
	
		document.observe('dom:loaded', function () { 
			 $$('.contact-link').each(
				function(e){
			 		Event.observe( e, 'click', function(){ 
						var foo = ('core' + 'y.garrett@' + 'sim.o' +'rg')				
						window.location.href = 'mailto:' + foo; return false;
					})	
				 }
			 );
		});
		
