<!--
var buton = null;

function meniu_butoane(ce){
	if(buton != null)
		buton.getElementsByTagName("DIV")[1].style.display = "none";
		buton = ce;
		buton.getElementsByTagName("DIV")[1].style.display = "block";
}
meniu = {
	submeniu : null,
	timp : null,
	incepe : function(){
		meniu.submeniu = document.getElementById("submeniu");
	},
	
	arata : function(tinta){
		clearTimeout(meniu.timp);
		posX = tinta.offsetLeft;
		posY = tinta.offsetTop;
		parinte = tinta.offsetParent;
		while(parinte != null){
			posX += parinte.offsetLeft;
			posY += parinte.offsetTop;
			parinte = parinte.offsetParent;
		}
		meniu.submeniu.style.left = posX + "px";
		meniu.submeniu.style.top = posY + 24 +"px";
		meniu.submeniu.style.visibility = "visible";
	},
	ascunde : function(){
		meniu.submeniu.style.visibility = "hidden";
	},
	preascunde : function(){
		meniu.timp = setTimeout("meniu.ascunde()",120);
	},
	sterge : function(){
		clearTimeout(meniu.timp);
	}
}

//-->
