// JavaScript Document

$(function(){

// Email

    $('a.email').each(function(i) {
        var text = $(this).text();
        var address = text.replace(" at ", "@");
        $(this).attr('href', 'mailto:' + address + $(this).attr('href'));
            $(this).text(address);
     });

    $('a.emaillk').each(function(i) {
        var text = $(this).attr('rel');
        var address = text.replace(" at ", "@");
        $(this).attr('href', 'mailto:' + address + $(this).attr('href'));
     });


});


