/*
	for (menu = 1; menu <= 4; menu++) { 
	closeMenu = document.getElementById("menu" + menu);
	closeMenu.style.display="none";
	}
*/

function handleParent1()
{
	myParent = document.getElementById("menu1");
	if (myParent.style.display=="none") {
		myParent.style.display="block"
	} 
	else {
	window.location.assign("/adventures/");
	}
}

function handleParent2()
{
	myParent = document.getElementById("menu2");
	if (myParent.style.display=="none") {
		myParent.style.display="block"
	} 
	else {
	window.location.assign("/fun/");
	}
}

function handleParent3()
{
	myParent = document.getElementById("menu3");
	if (myParent.style.display=="none") {
		myParent.style.display="block"
	} 
	else {
	window.location.assign("/mais/");
	}
}

function handleParent4()
{
	myParent = document.getElementById("menu4");
	if (myParent.style.display=="none") {
		myParent.style.display="block"
	} 
	else {
	window.location.assign("/other/");
	}
}



