Langsung copy n liat sendiri hasilnya
<script>
function menumover(id){
document.getElementById(id).style.display=”block”;
}
function menumout(id){
document.getElementById(id).style.display=”none”;
}
</script>
<Table align=center>
<tr>
<td onmouseover=menumover(‘menu1′) onmouseout=menumout(‘menu1′)>
Menu Koran
<div id=menu1 style=”position:absolute;z-index:2;display:none”>
<table>
<tr><td><a href=”http://www.detik.com”>Detik</a></td></tr>
<tr><td><a href=”http://www.kompas.com”>Kompas</a></td></tr>
</table>
</div>
</td>
<td>|</td>
<td onmouseover=menumover(‘menu2′) onmouseout=menumout(‘menu2′)>
Menu Search
<div id=menu2 style=”position:absolute;z-index:2;display:none”>
<table>
<tr><td><a href=”http://www.yahoo.com”>Yahoo</a></td></tr>
<tr><td><a href=”http://www.google.com”>Google</a></td></tr>
</table>
</div>
</td>
</tr>
</table>