$(document).ready(function() {

	// fix mailto spam bot filter
	$('a').each(function() {
		var url = $(this).attr('href');
		if(url) {
			url = url.replace('###', '@');
			var text = $(this).html();
			text = text.replace('###', '@');		
			$(this).attr('href', url);
			$(this).html(text);
		}
	}); 
	
});
