var mobjHovering

function navigationBarHover(pobjCell, pblnHovering) {
  var strDescriptionCellID = "cel" + pobjCell.parentElement.parentElement.parentElement.id.substring(3) + "Description"
  if (pblnHovering) {
    if (mobjHovering)
      mobjHovering.style.color = "#000000"
    mobjHovering = pobjCell.firstChild
    mobjHovering.style.color = "#4040c0"
    switch (mobjHovering.innerText) {
      case "Home":
        document.all(strDescriptionCellID).innerText = "The DesertSwing.com Start Page"
        break
      case "Schedule":
        document.all(strDescriptionCellID).innerText = "View Desert Swing's current schedule"
        break
      case "Bios":
        document.all(strDescriptionCellID).innerText = "Meet the members of Desert Swing"
        break
      case "Tunes":
        document.all(strDescriptionCellID).innerText = "View the Desert Swing song list"
        break
      case "Photos":
        document.all(strDescriptionCellID).innerText = "View photos of various Desert Swing gigs"
        break
      case "Downloads":
        document.all(strDescriptionCellID).innerText = "Download Desert Swing samples and goodies"
    }
  } else {
    mobjHovering.style.color = "#000000"
    document.all(strDescriptionCellID).innerHTML = "Desert Swing - The Big Band Sound"
  }
}