// JavaScript Document

$(document).ready(function()
{
    $('a.ltsmail').each(function(i) 
    {
        var text = $(this).text();
        $(this).attr('href', 'mailto:' + text + '@a.lts.se');
        $(this).text(text + '@a.lts.se');
    });
});
