﻿$(document).ready(function(){
    $('a.bericht').each(function() {
        e = this.rel.replace('/', '@').replace('|', '.');
        this.href = 'mailto:' + e;
	    $(this).text(e);
    });
});

