随屏不动的菜单
<head></head>之间拷贝以下代码
-----------------------------
<SCRIPT LANGUAGE="JavaScript">

/*
Created by Randy Bennet http://home.thezone.net/~rbennett/utility/javahead.htm
Featured on Website Abstraction (http://wsabstract.com)
For this and over 400+ free scripts, visit http://wsabstract.com
*/

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>

<body>中添加OnLoad="setVariables();checkLocation()"
并在其后记入以下代码
--------------------
<div id="object1" style="position: absolute; visibility: show; left: 44; top: 32; z-index: 5; width: 128; height: 213">

<table width=123 border=0 cellspacing=20 cellpadding=0 >
<tr>
<td bgcolor="#336600" width="81">
<p align="center"><font color="#FFFF00" size="3">本站导航</font></p>
</td>
</tr>
<tr>
<td bgcolor="#99CCFF" width="81">
<p align="center"><a href="http://webtips.myetang.com/skill/image1.htm" >图片特效</a></p>
</td>
</tr>
<tr>
<td bgcolor="#99CCFF" width="184">
<p align="center"><a href="http://webtips.myetang.com/skill/guide1.htm" >菜单导航</a></p>
</td>
</tr>
<tr>
<td bgcolor="#99CCFF" width="184">
<p align="center"><a href="http://webtips.myetang.com/skill/page1.htm">页面特技</a></p>
</td>
</tr>
<tr>
<td bgcolor="#99CCFF" width="184">
<p align="center"><a href="http://webtips.myetang.com/skill/mouse1.htm">鼠标事件</a></p>
</td>
</tr>
</table>
</div>