hola pitxulin espero que te sirva este código que acabo de hacer, el contenido del menu lo modificas a tus necesidades.
Checalo y me cuentas.
<html>
<head>
<!-- EMPIEZA FUNCION DEL MENU -->
<script language=javascript>
function setVariables() {
if (navigator.appName == "Netscape") {
v=".top=";
dS="document.";
sD="";
y="window.pageYOffset";
}
else {
v=".pixelTop=";
dS="";
sD=".style";
y="document.body.scrollTop";
}
}
function checkLocation() {
object="object1";
yy=eval(y);
eval(dS+object+sD+v+yy);
setTimeout("checkLocation()",10);
}
</script>
<!-- TERMINA FUNCION DEL MENU -->
</head>
<body OnLoad="setVariables();checkLocation();" bgcolor=000000>
<table border=0 width=100% height=200%>
<tr><td>
<!-- AQUI ESTARA EL CONTENIDO DEL MENU -->
<div id="object1" style="position:absolute; visibility:show; left:15px; top:0px; z-index:2">
<font size=7 color=red face=arial>Aqui estara el menu</font>
</div>
</td>
</tr>
</table>
</body>
</html>