Buongiorno a tutti,
ho trovato in rete il seguente menu che segue il movimento della scrollbar. Il problema del seguente menu č che non funziona su Firefox e Safari, il motivo č dovuto al settaggio delle variabili.
Questo č il codice:

html>
<head>
<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>

</HEAD>
<body onload="setVariables();checkLocation()" bgcolor="#eeeeee">





<div id="object1" style="position:absolute; visibility:show; left:0px; top:0px; z-index:2">
<table border="0" cellspacing="20" cellpadding="0">
<tr>
<td bgcolor=eeeeee><CENTER>Menu Bar</CENTER></td>
</tr>
<tr>
<td>Menu Item 1</td>
</tr>
<tr>
<td>Menu Item 2</td>
</tr>
<tr>
<td>Menu Item 3</td>
</tr>
<tr>
<td>Menu Item 4</td>
</tr>

</table>
</div>

<table><tr><td width=130><FONT COLOR="#FFFFFF">a</FONT></td><td><CENTER>Prova a scorrere la pagina in basso</CENTER>

.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
Part way down

.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
The End

.
.
.
.
.
.
.
.
</td></tr>
</table>
</body>
</html>

Qualcuno mi sā dare indicazioni in merito.
Grazie in anticipo.