I would like to have a table (2 rows and 5 columns) that have the menu headings
-ok, then make a table with those properties and cells
I want the menus to drop down with a table of links (one in each cell) and have the links change color when rolled over.
- use the "show/hide" layer on the links and CSS for color changes of those links
CSS------------------------
a.menu:link{
color: Blue;
text-decoration: none;
}
a.menu:visited{
color: #FF4500;
text-decoration: none;
}
a.menu:hover{
background-color: #DEEDFC;
text-decoration: underline overline;
color: #FF7200;
}
-------------------------------
see it at
show hide layers:
------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape"

&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"

)>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms
[n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers.document);
if(!x && d.getElementById) x=d.getElementById
; return x;
}
function MM_showHideLayers() { //v6.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args))!=null) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible'
v=='hide')?'hidden':v; }
obj.visibility=v; }
}
//-->
</script>
</head>
<body>
<table width="619" height="153" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="25" align="center"><a href="#" onClick="MM_showHideLayers('menu1','','show')" onDblClick="MM_showHideLayers('menu1','','hide')">heading
link</a></td>
<td align="center">heading link</td>
<td align="center">heading link</td>
<td align="center">heading link</td>
<td align="center">heading link</td>
</tr>
<tr>
<td><div id="menu1" style="position:absolute; width:100px; height:96px; z-index:1; top: 40px; left: 113px; visibility: hidden;">
<table width="99" height="94" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><a href="#">link</a></td>
</tr>
<tr>
<td align="center"><a href="#">link</a></td>
</tr>
<tr>
<td align="center"><a href="#">link</a></td>
</tr>
</table>
</div></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<p>click ones to open menu double-click to close</p>
</body>
</html>
-------------------------------
now u can experiment
All the best!