Drop Down Menu

this kind of drop down menu is basicly tables within tables. Sub links appear when a mouse hovers over it.
Title 1
Title 2
Title 3
Css:

Javascript:

*remember those two goes inbetween your header tags
html:

there are some things to think about while your changing and adjusting the code for your site.
  1. The width of the menu is at 100% so it will stretch to the full length of whater you put it in.
  2. The mouseover effect reacts with the word, not an image of the word
  3. when you get to this part
     <td onmouseover="showmenu('Title 3')" onmouseout="hidemenu('Title 3')">
    <a href="URL HERE">Title 3</a><br /> 
    <------this is the one that shows
    <table class="menu" id="Title 3" width="120">
    <tr><td class="menu"><a href="URL HERE">link</a></td></tr>
    <tr><td class="menu"><a href="URL HERE">link</a></td></tr>
     
    Make sure that all 4 are the same name
  4. Right now the main menu are all links with plain text. what I do is change them into headers, that way I can put backgrouds and change the font and color