jQuery(document).ready(function($){
	
	//Email Obfuscation
	$(".replaceAt").replaceWith("@");
  	$(".obfuscate").each(function () {
  		$(this).attr("href", "mailto:"+$(this).text());
  		thisrel = $(this).attr("rel");
  		if (thisrel) $(this).text(thisrel);
  	});
  	
});
