jQuery(document).ready(
	function() {
		jQuery("a[href^='mailto:']").each(
			function() {
				jQuery(this).html(jQuery.base64.decode(jQuery(this).html()));
				jQuery(this).attr('href', 'mailto:'+jQuery.base64.decode((jQuery(this).attr('href').substr(7))));
			}
		);
		
	}
);