$(document).ready(function() {
  console.log("plop");
  $('.mystery').each(function() {
    var txt, x = '<a hr', y = 'ilto', z = 'ma';
    txt = this.innerHTML;
    txt = txt.replace(/\s+arobase\s+/, '@').replace(/\s+point\s+/, '.');
    var a = document.createElement('a');
    a.href = z + y + ':' + txt;
    a.innerHTML = txt;
    this.innerHTML = '';
    this.appendChild(a);
  });
  if($("a[rel^='prettyPhoto']").length) {
    $("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook'});
  }
});


