var timer;
var i;
var puvodni_y;
var stav=new Array();
// for (i=1;i<=max;i++) {
// 	stav[i]=false;
// }

function ukaz(id) {
  var ell=document.getElementById("l"+id);
  var elr=document.getElementById("r"+id);
  ell.className="menulon";
  elr.className="menuron";
}
function schovej(id,on) {
  var ell=document.getElementById("l"+id);
  var elr=document.getElementById("r"+id);
  if(on!="on")
  {
    ell.className="menul";
    elr.className="menur";
  }
}

function ukazat(cil) {
	if (stav[cil]==false) {
		stav[cil]=true;
		var el=document.getElementById('submenu'+cil);
		if (el!=undefined) el.className='submenu';
		el=document.getElementById('menu'+cil);
		if (el!=undefined)el.className='kotva on';
	}
}
function schovat(cil) {
	stav[cil]=false;
	window.setTimeout('kill('+cil+')',5);
}

function kill(cil) {
window.setTimeout("kill2('"+cil+"')",100);
}

function kill2(cil) {
	if (stav[cil]==false) {
		var el=document.getElementById('submenu'+cil);
		if (el!=undefined) el.className='submenu inv';
		el=document.getElementById('menu'+cil);
		if (el!=undefined) el.className='kotva';
	}
}