// JavaScript Document

$(document).ready(function() {

	/* Spam harvester protection - CM's plugin */
	$("span.mailme").each(function(){
		   var spt = $(this);
		   var addr = $(spt).text().replace(" hailing from ","@").replace(" from the TLD of ",".");
		   $(spt).after('<a href="mailto:'+addr+'">'+ addr +'</a>')
		   $(spt).remove();
	});

});

