
function menu_over(name) {
    document.getElementById('menu_'+name).style.visibility = 'visible';
    document.getElementById('bouton_'+name).style.fontWeight = 'bold';
}

function menu_out(name) {
    document.getElementById('menu_'+name).style.visibility = 'hidden';
    document.getElementById('bouton_'+name).style.fontWeight = 'normal';
}

function sendEmail(name) {
    window.location.href = 'mailto:'+name+'@verditek.ca';
}
