function topMenuAct(obj) {
  obj.style.orgColor = obj.style.color;
  obj.style.color = '#7b9ea5';
}

function topMenuInact(obj) {
  obj.style.color = obj.style.orgColor;
}