function subnavSwap(section) {
  for (var i = 0; i < sectionList.length; i++) {
    var targetSection = document.getElementById('subnav_' + sectionList[i]);
    if (sectionList[i] == section) { targetSection.className = "active"; }
    else { targetSection.className = "inactive"; }
  }
}
