DHTML
one of the first tricks I learned.
put menu in div, give div an ID
Code:
<div ID="the_menu">....</div>
make a button to evoke the JavaScript function you have to show/hide the menu.
Code:
<a href="javascript: toggleMenu();">MENU</a>
Write the fucntion...
Code:
function toggleMenu() {
menu = document.getElementById("the_menu");
if (menu.style.display == "block") menu.style.display = "none";
else menu.style.display = "block";
}
(untested, any problems its surely something easily resolved).
Any other things you'de like to know/do?
(I've been thinking of making them into tutorials for a web site).