//
var flagId;
function menuControl(id) {
	if (flagId) {
		var menu = document.getElementById("menu_" + flagId);
		menu.style.display = "none";
	}
	var menu = document.getElementById("menu_" + id);
	menu.style.marginTop = 24 + "px";
	menu.style.marginLeft = -113 + "px";
	showMenu(menu);
	flagId = id;
}
var nbottom = 0, speed = 3;
function displayMenu(obj) {
	obj.style.clip = "rect(0 100% " + nbottom + "% 0)";
	nbottom += speed;
	if (nbottom <= 100) {
		timerID = setTimeout("displayMenu(" + obj.id + "),70");
	} else {
		clearTimeout(timerID);
	}
}
function showMenu(obj) {
	obj.style.display = "block";
	obj.style.clip = "rect(0 0 0 0)";
	nbottom = 5;
	displayMenu(obj);
}
function hideMenu(obj) {
	nbottom = 0;
	obj.style.display = "none";
}
function keepMenu(obj) {
	obj.style.display = "block";
}

function stop(){ 

return false; 
} 
document.oncontextmenu=stop; 
