/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var profiles = {
    window:
    {
        height:700,
        width:1024,
        center:1
    },
    windowquestion:
    {
        height:700,
        width:1024,
        center:1,
        scrollbars:1
    },
    contactwindow:
    {
        height:625,
        width:590,
        center:1,
        scrollbars:1
    }
}


$(document).ready(function(){
    $('a.email').each(function(){
        e = this.rel.replace('/','@');
        this.href = 'mailto:' + e;
        $(this).text(e);
    });
});


