$(window).load(function () {
	$('a[href="mailto:"]').each(function(index) {
		var parts = $(this).attr('title').split('|');
		var mail = parts[0] + '@' + parts[1];
		if (parts.length >= 3) {
			mail += '?subject=' + parts[2];
		}

		$(this).attr('href', 'mailto:' + mail);
		$(this).attr('title', '');
		$(this).text(mail);
	});
});
