<head>
<style type="text/css">
#nav, #nav ul { /* all lists */ padding: 0;
margin: 0;
list-style: none;
line-height: 1;
}
#nav a {
display: block;
width: 10em;
}
#nav li { /* all list items */
float: left;
width: 10em; /* width needed or else Opera goes nuts */
}
#nav li ul { /* second-level lists */
position: absolute;
background: orange;
width: 10em;
left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul ul { /* third-and-above-level lists */
margin: -1em 0 0 10em;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
left: auto;
}
#content {
clear: left;
color: #ccc;
}
</style>
<script type="text/javascript"><!--//--><![CDATA[//><!--
sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]></script>
</head>
<body>
<table>
<span style="font-family: Courier New; font-weight: bold;">•</span><span style="color: navy; font-family: Courier New; font-weight: bold;"><font size="4">Home</font></span>
<span style="font-family: Courier New;">•</span><a onmouseover="this.style.fontWeight='bold';" style="color: navy; font-family: Courier New; font-weight: normal;" onmouseout="this.style.fontWeight='normal';" target="_top" href="aboutus.html" font-weight="" normal=""><font size="4">Link1</font></a>
<span style="font-family: Courier New;">•</span><a onmouseover="this.style.fontWeight='bold';" style="color: navy; font-family: Courier New; font-weight: normal;" onmouseout="this.style.fontWeight='normal';" target="_top" href="guestbook.html" font-weight="" normal=""><font size="4">Link2</font></a>
<span style="font-family: Courier New;">•</span><a onmouseover="this.style.fontWeight='bold';" style="color: navy; font-family: Courier New; font-weight: normal;" onmouseout="this.style.fontWeight='normal';" target="_top" href="chat.html" font-weight="" normal=""><font size="4">Link3</font></a>
<ul id="nav">
<li><a href="#">
<span style="font-family: Courier New;"></span></a><a normal="" font-weight="" href="materials.html" target="_top" onmouseout="this.style.fontWeight='normal';" style="color: navy; font-family: Courier New; font-weight: normal;" onmouseover="this.style.fontWeight='bold';"><span style="font-family: Courier New;">•</span><font size="4">Suckerfish-Link</font></a>
<ul>
<li><a href="#">link1</a></li>
<li><a href="#">Link2</a></li>
<li><a href="#">Link3</a></li>
<li><a href="#">Link4</a></li>
<li><a href="#">Link5</a></li>
<li><a href="#">Link6</a></li>
<li><a href="#">Link7</a></li>
<li><a href="#">Link8</a></li>
<li><a href="#">Link9</a></li>
<li><a href="#">Link10</a></li>
</ul>
</li>
</ul>
</body></html>