$(document).ready(function() {
	$("#details a[href^='mailto:']").each(function() {
		var href = $(this).attr('href').split('?');
		$(this).attr('href', href[0] + '@' + href[1] + '.' + href[2]);
	});
});