<html>
<head>
<title>cool menu<title>
<style type="text/css">
.menu {font-family:Verdana; font-size:7pt; font-weight:bold}
</style>
<script language="javascript">
function movein(which,html){
which.style.background='coral'
description.innerHTML=html
}
function moveout(which){
which.style.background='bisque'
description.innerHTML=' '
}
</script>
</head>
<body>
<table bgcolor="black" border="1"
bordercolor="ivory" cellpadding="2" cellspacing="0">
<tr>
<td class="menu" bordercolor="black" id="choice1"
style="background-color:bisque; cursor:hand"
onmouseover="movein(choice1,'Your Freehosting Index')"
onmouseout="moveout(choice1)"
onclick="location.href='http://www.freehostingindex.com'">
The FreeHosting Index
</td>
</tr>
<td class="menu" bordercolor="black"
id="choice2" style="background-color:bisque; cursor:hand"
onmouseover="movein(choice2,'.......Baby!')"
onmouseout="moveout(choice2)"
onclick="location.href='http://www.astalavista.com/'">
AstaLaVista
</td>
</tr>
<td class="menu" bordercolor="black" id="choice3"
style="background-color:bisque; cursor:hand"
onmouseover="movein(choice3,'for your pleasure!')"
onmouseout="moveout(choice3)"
onclick="location.href='http://www.freepicsindex.com'">
Freepicsindex
</td>
</tr>
<td class="menu" bordercolor="black" id="choice4"
style="background-color:bisque; cursor:hand"
onmouseover="movein(choice4,'Your Javascript Source!')"
onmouseout="moveout(choice4)"
onclick="location.href='http://www.astalavista.com/hub/scripts/'">
Javascirpts
</td>
</tr>
<tr>
<td bordercolor="black" bgcolor="ivory" height="18">
<font id="description" face="Verdana" size="1">
</td>
</tr>
</table>
</body>
</html>