$(document).ready(function() {
	$('.contact-email a').each(function(){
		e = $(this).attr('ref').replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
});
