function uncloak(){
    this.document.getElementById('mail').href="mailto:jeanne"+"@jeannemwagner"+".com";
}

function cloak(){
    this.document.getElementById('mail').href="mailto:dev@null";
}

this.document.getElementById('mail').onmouseover=function(){uncloak()};
this.document.getElementById('mail').onmouseout=function(){cloak()};
