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