var turnLineOff = false;

function showSubMenu(menuIdName) {
	document.getElementById(menuIdName).style.display = 'block';
	turnLineOff = true;
}
  
function hideSubMenu(menuIdName) {
	document.getElementById(menuIdName).style.display = 'none';
	turnLineOff = false;
}