<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/JavaScript">
<!--
var picheight = 20;
var men = new Array();
var h = new Array();
function hide(id)
{
h[id] = true;
x = document.getElementById("menue"+id);
a = (x.offsetHeight + 2) * -1;
a = a + picheight;
if(x.offsetTop != a)
{
subs = 5;
if((x.offsetTop - subs) < a)
{
x.style.top = a;
h[id] = false;
}
else
{
x.style.top = x.offsetTop - subs;
setTimeout("hide("+id+")", 10);
if(x.offsetTop == a){ h[id] = false; }
}
}
}
function show(id, set)
{
clearTimeout(men[id]);
men[id] = setTimeout("hide("+id+", false)", 2000);
x = document.getElementById("menue"+id);
if(x.offsetTop != 0 && h[id] != true)
{
add = 5;
if((x.offsetTop + add) > 0)
{
x.style.top = 0;
}
else
{
x.style.top = x.offsetTop + add;
setTimeout("show("+id+", false)", 10);
}
}
}
function start(id)
{
x = document.getElementById("menue"+id);
a = (x.offsetHeight + 2) * -1;
a = a + picheight;
x.style.top = a;
}
//-->
</script>
<style type="text/css">
* {margin:0;padding:0;}
body {width:100%;}
</style>
</head>
<body>
<table style="table-layout:fixed;width:100%;position:relative;z-index:0;">
<tr>
<td style=""></td>
<td style="width:200px;"><div id="menue1" style="color: red; position:absolute; text-align:center; width:200px; z-index:1; background-color: #0033FF; border: 1px solid #000000;">
<ul style="margin: 0px;">
<li>Hallo</li>
<li>Na</li>
<li><a href="#" onmouseover="show(1)" style="color: red;">testlink</a></li>
</ul>
</div>
</td>
<td style="width:200px;"><div id="menue2" style="color: red; position:absolute; text-align:center; width:200px; z-index:1; background-color: #0033FF; border: 1px solid #000000;">
<ul style="margin: 0px;">
<li>bello</li>
<li>Na</li>
<li><a href="#" onmouseover="show(2)" style="color: red;">testlink</a></li>
</ul>
</div></td>
<td></td>
</tr></table>
<script type="text/JavaScript">
<!--
start(1);
start(2);
//-->
</script>
</body>
</html>