$(document).ready(function() {

	$( 'a[href*="[at]"][href*="[dot]"]' ).each(function() {
		var email = $(this).attr('href').split('[at]').join('@').split('[dot]').join('.');

		if ($(this).text().length == 0 || $(this).text() == $(this).attr('href')) $(this).text(email);
		
		$(this).attr('href', 'mailto:' + email.toLowerCase());
	});
	
});
