;(function($) {
  
  $(document).ready(function() {
        
    $('a.mailto').each(function() {
      e = (this.href.match(/[^\/]+\/[^\/]+\.[a-z\.]{2,}/) || [])[0];
      if (!e.length) return;
      e = e.replace('/','@');
      this.href = 'mailto:' + e;
    });

    $('a[href=#mailto]').each(function() {
      v = this.rel && 0 < this.rel.length ? this.rel : this.innerHTML;
      e = v.replace('/','@');
      this.href = 'mailto:' + e;
      if (this.innerHTML == v) this.innerHTML = e;
    });
    
    $('a.popup').click(function(evt) {
      evt.preventDefault();
      window.open(this.href);
    });
        
  });

})(jQuery);


