
function MenuItemColor(item, isOver) {
	isOver ? bgColor = "C5CACE" : bgColor = "9DBBCF";
	item.style.backgroundColor = bgColor;
}

