$(document).ready(function ()
{
    //decode emails
    $("a#email").each(function(i)
        {
            var mail = $(this).prop('rel');
            mail = mail.replace('/','@');
            $(this).prop('href','mailto:'+mail);
            $(this).html(mail);
        });

    console.log('test!');


});
