// Drop Down Menu

function hideMenu() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('dropDownContent').style.display = 'none';
}

else {
if (document.layers) { // Netscape 4
document.hideshow.display = 'none';
}

else { // IE 4
document.all.hideshow.style.display = 'none';
}
}
}

function showMenu() {
if (document.getElementById) { // DOM3 = IE5, NS6
document.getElementById('dropDownContent').style.display = 'block';
}

else {
if (document.layers) { // Netscape 4
document.hideshow.display = 'block';
}

else { // IE 4
document.all.hideshow.style.display = 'block';
}
}
}
