var savethec = {};

savethec = {

	init: function() {
		this.eo.replace();
	},
	
	eo: {
		replace: function() {
			$('.eo').each(function() {
				href = $(this).attr('href').replace(/.*contact\/([a-z0-9._%-]+)\+([a-z0-9._%-]+)\+([a-z.]+)/i, '$1' + '@' + '$2' + '.' + '$3');
				$(this).attr('href', 'mailto:' + href);
				$(this).html(href);
			});
		}
	}

}

$(document).ready(function(){
	savethec.init();
});