// JavaScript Document


function doit() {
document.getElementById("navone").style.display = 'block';
document.getElementById("navtwo").style.display = 'block';
document.getElementById("navthree").style.display = 'block';
document.getElementById("navfour").style.display = 'block';
document.getElementById("navfive").style.display = 'block';
document.getElementById("menuoff").style.display = 'block';
}


function hidemenu() {
document.getElementById("navone").style.display = 'none';
document.getElementById("navtwo").style.display = 'none';
document.getElementById("navthree").style.display = 'none';
document.getElementById("navfour").style.display = 'none';
document.getElementById("navfive").style.display = 'none';
document.getElementById("menuoff").style.display = 'none';
}

function navlinkone() {
window.location = "ed_prog.html"
}

function navlinktwo() {
window.location = "hypo_prog.html"
}

function navlinkthree() {
window.location = "migraine_prog.html"
}

function navlinkfour() {
window.location = "diabetes_prog.html"
}

function navlinkfive() {
window.location = "ur_inc_prog.html"
}

function navlinkhome() {
window.location = "index.html"
}
