function HideDIV(d) { document.getElementById(d).style.display = "none"; }
function DisplayDIV(d) { document.getElementById(d).style.display = "block"; }


function Wellness() {
    document.getElementById("magic").className = "w";
    document.getElementById("n1").style.color = "#502d1f"; 
}

function Leadership() {
    document.getElementById("magic").className = "l";
    document.getElementById("n2").style.color = "#502d1f";
}
function Sales() {
    document.getElementById("magic").className = "s";
    document.getElementById("n3").style.color = "#502d1f";
}
function Presentation() {
    document.getElementById("magic").className = "p";
    document.getElementById("n4").style.color = "#502d1f";
}
function IT() {
    document.getElementById("magic").className = "i";
    document.getElementById("n5").style.color = "#502d1f";
}

function endMagic() {
    document.getElementById("magic").className = "";
    document.getElementById("n1").style.color = "#999999"; 
    document.getElementById("n2").style.color = "#999999";    
    document.getElementById("n3").style.color = "#999999";    
    document.getElementById("n4").style.color = "#999999";
    document.getElementById("n5").style.color = "#999999";
}
