This is a normal drop down menu, however you can change the colors of the background in the list. Replace each instance of #FFFFFF with the color code of your choice.
value=# (replace # with the address you want them to go to when you click on an item in the list)
---Menu--- (replace with the name you want for the item in the list)
Leave ---Menu--- on the first line and it will show Menu on the drop down when not in use.
(change to whatever wording you prefer)
<form name="color">
<select name="menu"
onChange="location=document.color.menu.options[document.color.menu.selectedIndex].value;"
value="GO">
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
</select>
</form>
If you would prefer the links to open in another window do the code this way instead:
<form name="form1">
<select name="menu" onChange="window.open(document.form1.menu.options[document.form1.menu.selectedIndex].value);">
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
<option style="background-color: #FFFFFF" value="#">---Menu---</option>
</select>
</form>