function omenu(state){
	// получаем элемент
	var om = document.getElementById("omenu");
	var tof = document.getElementById("tof");
	
	// статус меню
	if(state == "1"){
		om.style.display = "block";
		if(self.tm){clearTimeout(tm);}
	}else{
		tm = setTimeout("omenu_hide();", 500);
	}
}

function omenu_hide(){
	// получаем элемент
	var om = document.getElementById("omenu");
	var tof = document.getElementById("tof");
	
	// скрываем меню
	om.style.display = 'none';
}

function omenu2(state){
	// получаем элемент
	var om = document.getElementById("omenu2");
	var tof = document.getElementById("tpp");
	
	// статус меню
	if(state == "1"){
		om.style.display = "block";
		if(self.tm){clearTimeout(tm);}
	}else{
		tm = setTimeout("omenu2_hide();", 500);
	}
}

function omenu2_hide(){
	// получаем элемент
	var om = document.getElementById("omenu2");
	var tof = document.getElementById("tpp");
	
	// скрываем меню
	om.style.display = 'none';
}

