sorry that this isnt a direct answer to your question, but this is a css based menu that supports rollover that i have used.
Code:
<head>
<style type="text/css">
a.menu:link, a.menu:visited, a.menu:active, a.menu:hover
{
display: block;
line-height: 34px;
width: 100%;
text-align: center;
text-decoration: none;
font-family: arial;
font-size: 12pt;
color: white;
background-color: #3266CD;
border: none;
}
a.menu:hover
{
color: white;
background-color: green;
}
</style>
</head>
<body>
<table style="width:740px; height:34px; padding:0px;"><tr><td><a href="" class="menu">About Us</a></td><td><a href="" class="menu">graphic design</a></td></tr></table>
</body>
you have a lot of control over design of the menu. to add more links, just add more <td>'s
Bookmarks