<html>
<head>
<script language="javascript" type="text/javascript">
function Show() {
document.getElementById('mnubtn1').style.backgroundColor = "Blue";
document.getElementById('mnubtn1').style.color = "White";
document.getElementById('tblmenu').style.display = 'Block';
}
function Hide() {
document.getElementById('mnubtn1').style.backgroundColor = "#999999";
document.getElementById('mnubtn1').style.color = "White";
document.getElementById('tblmenu').style.display = 'None';
}
</script>
</head>
<body>
<input id="mnubtn1" type="button" value="Menu v" style="background-color: #999999; color: #FFFFFF;" onmouseover="Show()"
onmouseout="Hide()" />
<table id="tblmenu" onmouseover="Show()" style="display:none;" border="1">
<tr>
<td>
<a id="lnkmsn" href="http://in.msn.com">MSN</a>
</td>
</tr>
<tr>
<td>
<a id="lnkyahoo" href="http://www.yahoo.com">Yahoo</a>
</td>
</tr>
<tr>
<td>
<a id="lnkgoogle" href="http://www.google.com">Google</a>
</td>
</tr>
</table>
</body></html>