Cool Table Menu
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-8">
<style type="text/css">
<!--
.menu {font-family:Arial; font-weight:bold}
.menu a{
text-decoration:none;
color:black;
}
-->
</style>
<script language="javascript">
<!--
/*
Cool Table Menu
By Clarence Eldefors (http://www.freebox.com/cereweb
-- הפמ חוקל טפירקסה ) with modifications from Wsabstract.com
Visit http://wsabstract.com for this and over 400+ other scripts
*/
function movein(which,html){
which.style.background='coral'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML=html
else
boxdescription.innerHTML=html
}
function moveout(which){
which.style.background='bisque'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML=' '
else
boxdescription.innerHTML=' '
}
//-->
</script>
</head>
<body >
<table width="80%" border="1" cellspacing="2"
cellpadding="2" align="center" bgcolor="#ece8cf"
bordercolor="#666666" class="bord2">
<tr>
<td align="left">
<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(this,'The
#1 DHTML site online')" onmouseout="moveout(this)"">
<a href="http://www.dynamicdrive.com">Dynamic Drive</a></td></tr>
<td class="menu" bordercolor="black" id="choice2"
style="background-color:bisque; cursor:hand" onmouseover="movein(this,'Free
Java applets')" onmouseout="moveout(this)">
<a href="http://freewarejava.com">Freewarejava.com</a></td></tr>
<td class="menu" bordercolor="black" id="choice3"
style="background-color:bisque; cursor:hand" onmouseover="movein(this,'Free
webmaster resources')" onmouseout="moveout(this)"><a
href="http://www.freebox.com/cereweb/">Cerebus Web Resources</a></td></tr>
<td class="menu" bordercolor="black" id="choice4"
style="background-color:bisque; cursor:hand" onmouseover="movein(this,'Resources
to build your site')" onmouseout="moveout(this)"><a
href="http://www.sitepoint.com">SitePoint.com</a></td></tr>
<tr>
<td bordercolor="black" bgcolor="ivory" height="18"><font
id="boxdescription" face="Verdana" size="2"></font></td></tr>
</table>
</td>
</table>
</body>
</html>
|