// works on e-mail addresses entered like this:
// <a class="obfuscate">person<span class="replaceAt">-AT-</span>sixfeetup.com</a>
// replaces the span with @ and compiles the e-mail address into the href

jq(document).ready(function(){
    jq(".replaceAt").replaceWith("@");
    
    var totalObfs = jq(".obfuscate").size();
    for(i = 0; i < totalObfs; i++) {
      jq(".obfuscate").eq(i).attr("value", jq('.obfuscatevalue').eq(i).text());
    }
});

