﻿/// <reference path="jquery-1.2.6.min-vsdoc.js" />

$(function() {
    $(".MailAddress").each(function() {
        this.innerText = this.innerText.replace(" ", "@");
    });

    $("A").each(function() {
        if (this.href.substr(0, 7) == "mailto:")
            this.href = this.href.replace(" ", "@");
    });
});
