function show_menu(x) {
	document.getElementById('menu_item_'+x).style.display='block';
	document.getElementById('menu_'+x).style.backgroundColor='#dbd7cf';
	document.getElementById('menu_'+x).style.color='#9c6626';
}
function hide_menu(x) {
	document.getElementById('menu_item_'+x).style.display='none';
	document.getElementById('menu_'+x).style.backgroundColor='#ffffff';
	document.getElementById('menu_'+x).style.color='#000000';
}

