	var Visible = new Array();

function menu_Flip(ind) {
	obj = document.getElementById('datam' + ind);
	if (obj.style.display == "") obj.style.display = "none";
		else obj.style.display = "";
	}

function menu_MouseOver (ind) {
	obj = document.getElementById('m' + ind);
	Visible[ind] = true;
//	menu_Show(ind);
}

function menu_MouseOut (ind) {
	obj = document.getElementById('m' + ind);
	Visible[ind] = false;
// 	setTimeout('menu_Hide(' + ind + ')', 700);
}

function menu_Show(ind) {
	obj = document.getElementById('datam' + ind);
	obj.style.display = "";
	}

function menu_Hide(ind) {
	if (Visible[ind]) return;
	obj = document.getElementById('datam' + ind);
	obj.style.display = "none";
	}
