document.write('<div id="layer" style="position:absolute;top:21px;left:0px;"></div>')
var sayac;

	function abdr(menu,left){
	clearTimeout(sayac)
	menuGizle()
	str='<div id=layernew style="position:absolute; left:'+left+'; top:102; width:1px; height:1px; z-index:1; visibility: visible" onmouseover="uzeri()" onmouseout="sil()">'
	str+='<table width="210" border="2" bgcolor="#000000" cellpadding="2" cellspacing="2" bordercolor="#000000">'
	for (i=0; i<menu.length; i++){
		m=menu[i].split('|')
		str+='<tr>'
		str+='<td width="500" onMouseOver="bgColor=\'#1B5F99\'" onMouseOut="bgColor=\'#000000\'"><img src="images/spacer.gif" width="5" height="14" border="0" align="absmiddle"><a href='+m[1]+'><font color="#FFFFFF">'+m[0]+'</font></a></td>'
		str+='</tr>'
	}
	str+='</table>'
	str+='</div>'
	document.getElementById('layer').innerHTML=str
	
	}
	function sil(){
	clearTimeout(sayac);
	sayac = setTimeout("menuGizle()",10);
		}
		function menuGizle(){
		document.getElementById('layer').innerHTML=""
		}
		function uzeri(){
		clearTimeout(sayac);
		}

