$(function() {
  $("span.cms-guestbook-entry-email a").each(function(){
    this.innerHTML = this.innerHTML
	  .replace("&#x20;&#x3c;&#x64;&#x6f;&#x74;&#x3e;&#x20;",".")
	  .replace(" &lt;dot&gt; ",".")
	  .replace("&#x20;&#x3c;&#x61;&#x74;&#x3e;&#x20;","@")
 	  .replace(" &lt;at&gt; ","@");
  });
});
