// Make the email address obfuscation look like email again
$(document).ready(function() {
  $(".column_three").each(
    function(i) {
      email = $(this).text().replace(' [at] ', '@');
      mailto = '<a href="mailto:'+email+'">'+email+"</a>";
      $(this).html(mailto);
    }
  ); 
});
