// JavaScript Document

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

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