1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
   | <html>
  <head>
  <meta http-equiv="content-type" content="text/html; charset=windows-1250">
  <meta name="generator" content="PSPad editor, www.pspad.com">
  <title></title>
 
<!--functions javascript to greyed/degreyed cases-->
<script type="text/javascript">
 
 
var timeout	= 500;
var closetimer	= 0;
var ddmenuitem	= 0;
 
// open hidden layer
function mopen(id,v)
{	
 
 
	el = document.getElementById(id);
	if (v)
	 el.style.display="block";
	else
	 el.style.display="none";
 
}
 
 
</script>
  </head>
<body>
   <ul id="sddm">
    <li><div  style="width:100px" onmouseover="mopen('m1',true)" onmouseout="mopen('m1',false)">
        <a href="#">Images</a></div>
        <div id="m1" style="display:none"
            onmouseover="mopen('m1',true)" 
            onmouseout="mopen('m1',false)">
        <a href="#" >Tango</a>
 
        <a href="#" >Falmenco</a>
        <a href="#" >L'âme</a>
        </div>
    </li>
    </ul>
 
  </body>
</html> | 
Partager