function showMenu(choice) //(menu, choice)
{
	if (menu.style.display == 'none')
	{
		/*m0.style.display = 'none';
		m1.style.display = 'none';
		m2.style.display = 'none';
		m3.style.display = 'none';
		menu.style.display = '';*/

		home.style.backgroundColor = 'rgb(255,255,255)'; //'#C0C0C0'
		news.style.backgroundColor = 'rgb(255,255,255)'; //'#C0C0C0'
		games.style.backgroundColor = 'rgb(255,255,255)'; //'#C0C0C0'
		about.style.backgroundColor = 'rgb(255,255,255)'; //'#C0C0C0'
		english.style.backgroundColor = 'rgb(255,255,255)'; //'#C0C0C0'
		//choice.style.backgroundColor = 'gray'; //'#667788';
	}
}

function setMenuActive(choice)//(menu, choice)
{
	//if (menu.style.display == 'none')
		choice.style.backgroundColor = 'rgb(220,220,220)';//'#667788';
	//if (menu == m0 && choice == english)
		//choice.style.backgroundColor = 'rgb(220,220,220)';//'#667788';
}

function setMenuDefault(choice)//(menu, choice)
{
	//if (menu.style.display == 'none')
		choice.style.backgroundColor = 'rgb(255,255,255)';
	//if (menu == m0 && choice == english)
		//choice.style.backgroundColor = 'rgb(255,255,255)';
}
