<html>
<head>
<title>ם</title>
<style type="text/css">
body{font-family:tahoma;font-size:10pt}
A:hover{color:blue;font-weight:bold;text-decoration:underline}
a{text-decoration:none}
</style>
<!--change the title to your web page name-->
<title>DropDown Menu</title>
<script language="JavaScript">
<!-- INSTRUCTIONS
/*
READ THESE INSTRUCTIONS AND CHANGE THE VARIABLES ACCORDINGLY
*/
var menu_pos=0;
/* menu_pos - the value 0 means the menu will be hidden when the page is
opened and if value is set to 1 then the menu will be shown when the page
is opened */
var menu_speed=10;
/* menu_speed - this value allows you to change the speed of the menu. (1
to 10) (1 is the slowest) Note that the lower the speed the smoother the
menu is */
var instant_close=0;
/* instant_close - if you want the menu to close as soon as the user leaves
the menu, set this value to 1 else 0 */
//Don't change anything after this line unless you know
what youre doing
//Cheers from Schubert
if (menu_speed > 10)
{
menu_speed=10;
}
if(document.all)
{
doc = "document.all";
sty = ".style";
htm = ""
}
else if(document.layers)
{
doc = "document";
sty = "";
htm = ".document"
}
function positionLayers()
{
abcObj = eval(doc + '["abcLyr"]' + sty);
abcObj.left = 5;
if(menu_pos==0)
{
abcObj.top = -265;
}
else
{
abcObj.top = 2;
}
}
function pullitup()
{
if (window.dropdown)
{
clearInterval(dropdown)
}
pullup=setInterval("uplift()",1)
}
function dropitdown()
{
if (window.pullup)
{
clearInterval(pullup)
}
dropdown=setInterval("downlift()",1)
}
function uplift()
{
var x_pos1 = parseInt(abcObj.top);
if(x_pos1 >= -260 )
{
if(instant_close==1)
{
abcObj.top=-265;
}
else if(instant_close==0)
{
abcObj.top = x_pos1-menu_speed;
}
}
else if (window.pullup)
{
clearInterval(pullup);
}
}
function downlift()
{
var x_pos1 = parseInt(abcObj.top);
if(x_pos1 < 0 )
{
abcObj.top = x_pos1+menu_speed;
}
else if (window.dropdown)
{
clearInterval(dropdown);
}
}
function info()
{
alert("This script is copyrighted to Schubert - schubert_94_2000@yahoo.com.");
}
// end it-->
</script>
</head>
<body onload="positionLayers();" >
<div id="abcLyr" style="position:absolute;left:5px;top:4px;width:100px;height:300px;z-index:100;visibility:visible;"
onmouseover="dropitdown()" onmouseout="pullitup()">
<table bgcolor="#ffffff" width="200" height="300"
border="6" bordercolor="#000000" bordercolordark="#000000"
bordercolorlight="#808080" cellspacing="0">
<tr>
<td align="center" valign="middle">
<b>:רתאה ןכות</b> </td>
</tr>
<tr><td align="center" valign="middle" nowrap><a
href="#">Menu item 1
</a></td></tr>
<tr><td align="center" valign="middle" nowrap><a
href="#">Menu item 2</a></td></tr>
<tr><td align="center" valign="middle" nowrap><a
href="#">Menu item 3</a></td></tr>
<tr><td align="center" valign="middle" nowrap><a
href="#">Menu item 3</a></td></tr>
<tr><td align="center" valign="middle" nowrap><a
href="#">Menu item 5</a></td></tr>
<tr><td align="center" valign="middle" nowrap><a
href="javascript:info()">Information</a></td></tr>
<tr>
<td align="center" valign="middle" nowrap><font
size="-1"><b> ילש טירפתה
</b></font></td>
</tr>
<!--<tr><td align="center" valign="bottom"><font
size="-2"><b>Menu »</b> <a href="javascript:void(0)"
onclick="downlift()"><b>Show</b></a> <b>/</b>
<a href="javascript:void(0)" onclick="uplift()"><b>Hide</b></a></font></td></tr>-->
</table>
</div>
<table width="80%" border="1" cellspacing="2"
cellpadding="2" align="center" bgcolor="#ece8cf"
bordercolor="#666666" class="bord2">
<tr>
<td align="left">
<div align="center"><font size="3"><b>.העיגנב
תחונ טירפת </b></font></div>
</td>
<tr>
<td align="left"> </td>
</table>
</body>
</html>
|