// gegen E-Mail-Spam
$(function(){
  $('.email').each(function(index) {
    var s = $(this).text().replace(" [at) ", "&#64;");
    $(this).html("<a href=\"mailto:" + s + "\">" + s + "</a>");
  });
});
