/* PLY Interactive: Revised, jQuery based method for fixing mailto links with [at] */
$(document).ready(function() {	
	$('a[href^=mailto]').each(function() {
		$(this).attr('href', $(this).attr('href').replace(/\[at\]/, '@'));
	});	
});
