<!--


// layeres menü
var MenuShown;
var MenuObj = '';

function ShowMenu(obj) {
	if (MenuObj != '')  {
		document.getElementById(MenuObj).style.display = 'none';
		clearTimeout(MenuShown);
	}
	MenuObj = 'al' + obj.id;

	document.getElementById('al' + obj.id).style.display = 'block';
}

function HideMenu(e) {
	document.getElementById(e).style.display = 'none';
	MenuObj = '';
}

