﻿$(document).ready(function() {    
    var e = $("#email").text();
    e = e.replace(/\s+/g,'');
    e = "<a href='mailto:" + e + "'>" + e + "</a>";
    $("#email").html(e);
});
