// If the document contains any A tags whose class is 'linker', the contents of any SPANs therein whose class is 'obfuscATor' is changed to '@' and the href of the A is changed to an appropriate mailto: href

function linkProcessor()
{
	allLinks = document.getElementsByTagName("A");
	for (i=0; i<allLinks.length; i++)
	{
		if (allLinks[i].className=="linker")
		{
			atSigns = allLinks[i].getElementsByTagName("SPAN");
			for (j=0; j<atSigns.length; j++)
				if (atSigns[j].className=="obfuscATor")
					atSigns[j].innerHTML = "@";
			allLinks[i].href = ("mailto:" + allLinks[i].innerText);
		}
	}
	
}

