<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Menu</title>
<style type="text/css">
<!--
body,td,th {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #990000;
}
body {
margin-left: 20px;
margin-top: 20px;
margin-bottom: 0px;
background-color: #EBEBEB;
}
a {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #996600;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
#id1{
background-color:#EAEAEA;
padding:9px;
border:1px dotted #999999;
}
.style1 {color: #990000}
-->
</style>
<script language="javascript" type="text/javascript">
function show(id){
document.getElementById(id).style.display='block';
}
function hide(id){
document.getElementById(id).style.display='none';
}
</script>
</head>
<body>
<table width="200" border="0" cellpadding="6" cellspacing="1" bgcolor="#CCCCCC" onmouseover="show('id1');" onmouseout="hide('id1');" >
<tr>
<td width="68" bgcolor="#CCCCCC">
<div align="left" class="style1" style="width:100%;">
Main menu
</div>
</td>
<td width="105" bgcolor="#CCCCCC">
<ul style="position:absolute; display:none; width:190px; height:100px;" id="id1">
<li>
Salam
</li>
</ul>
</td>
</tr>
</table>
</body>
</html>