Create a table that when links are hovered over a description appears.
Place this between your head tags:
Code:
<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 javascriptkit.com
Visit http://javascriptkit.com for this and over 400+ other scripts
*/
function movein(which,html){
which.style.background='COLOR#1'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML=html
else
boxdescription.innerHTML=html
}
function moveout(which){
which.style.background='COLOR#2'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML=' '
else
boxdescription.innerHTML=' '
}
//-->
</script>
Add this code where you want the menu to appear on your page:
Code:
<table width=50% bgcolor="black" border="1" bordercolor="ivory" cellpadding="2" cellspacing="0">
<tr>
<td class="menu" bordercolor="black" id="choice1" style="background-color:COLOR#2; cursor:hand" onmouseover="movein(this,'DESCRIPTION FOR LINK#1')" onmouseout="moveout(this)""><a href="/LINK#1 URL" target=new>LINK#1</a></td></tr>
<td class="menu" bordercolor="black" id="choice2" style="background-color:COLOR#2; cursor:hand" onmouseover="movein(this,'DESCRIPTION FOR LINK#2')" onmouseout="moveout(this)"><a href="/LINK#1 URL" target=new>LINK#1</a></td></tr>
<td class="menu" bordercolor="black" id="choice3" style="background-color:COLOR#2; cursor:hand" onmouseover="movein(this,'DESCRIPTION FOR LINK#3')" onmouseout="moveout(this)"><a href="/LINK#1 URL" target=new>LINK#1</a></td></tr>
<td class="menu" bordercolor="black" id="choice4" style="background-color:COLOR#2; cursor:hand" onmouseover="movein(this,'DESCRIPTION FOR LINK#4')" onmouseout="moveout(this)"><a href="/LINK#1 URL" target=new>LINK#1</a></td></tr>
<tr>
<td bordercolor="black" bgcolor="ivory" height="18"><font id="boxdescription" face="Arial" size="2"></font></td></tr>
</table>



.com .info
We're the affordable, reliable place to host your site. And unlike the competition, there's no set up fee and no annual commitment.
Our highly trained, courteous support staff is waiting to help. We'll resolve any issue to your complete satisfaction.