
// function for showing the info for sections in the footer
function showSectionInfo(which) {
  var sections = new Array("home", "projects", "music", "design", "video", "musings");
  for (var i=0; i<sections.length; i++) {
    document.getElementById("si_"+sections[i]).style.display = "none";
  }
  if (which) {
    document.getElementById("si_"+which).style.display = "block";
  }
}

function musenavGo() {
  var obj = document.musenav_form.date;
  var dateparts = obj.options[obj.selectedIndex].value.split("/");
  window.location.href = 'http://www.aevum.net/musings/index.php?month='+dateparts[0]+'&year='+dateparts[1];
}
