var turn = 0;

function ShowMenu(){

			if (turn == 0){
			document.getElementById("mainmenu").style.visibility = 'visible';
			document.getElementById("showmenu_link").innerText = 'убрать меню';
			turn = 1;			
			}
			else if (turn == 1) {
			document.getElementById("mainmenu").style.visibility = 'hidden';
			document.getElementById("showmenu_link").innerText = 'показать меню';
			turn = 0;}	
}

