// JavaScript Document

function changeMenu(id){
id.style.backgroundColor = "#873F11";
id.children[0].style.color = '#F79A60';
}

function redoMenu(id){
id.style.backgroundColor = '#F79A60';
id.children[0].style.color = '#873F11';
}
