play around with this:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Color Example
</title>
<script type="text/javascript">
function changecolor
(color
){
var table
= document.getElementById
('colortable');
table.style.backgroundColor
='#' + color;
}
function changetext
(color
){
var table
= document.getElementById
('colortable');
table.style.color
='#' + color;
}
</script>
</head>
<body>
<table border="0" width="100%" id="table1" cellspacing="0" cellpadding="0">
<tr>
<td height="100"> </td>
</tr>
<tr>
<td height="50">
<table border="0" style="background-color: #000000" width="100%" cellspacing="0" cellpadding="0" height="100%" style="color: #FFFFFF" id="colortable">
<tr>
<td align="center" width="20%" onmouseover="changecolor('0000FF');changetext('FF0000')" onmouseout="changecolor('000000');changetext('FFFFFF')">Blue
</td>
<td align="center" width="20%" onmouseover="changecolor('00FF00');changetext('0000FF')" onmouseout="changecolor('000000');changetext('FFFFFF')">Green
</td>
<td align="center" width="20%" onmouseover="changecolor('FF8800');changetext('FF00FF')" onmouseout="changecolor('000000');changetext('FFFFFF')">Orange
</td>
<td align="center" width="20%" onmouseover="changecolor('FF0000');changetext('0000FF')" onmouseout="changecolor('000000');changetext('FFFFFF')">Red
</td>
<td align="center" width="20%" onmouseover="changecolor('FFFF00');changetext('00FF00')" onmouseout="changecolor('000000');changetext('FFFFFF')">Yellow
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
if you want drop down menus try this site:
http://www.dynamicdrive.com/
thay have some good dropdown scripts, as for changing the color of the dropdown too, (if the one you pick doesnt already) respond and i'll help but please post your code.
-ALL