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