// Left menu navigation script
function whatPage(){
section = document.getElementById(SECTIONLOC).id

if(document.getElementById(section+'_children')){
  sectionChild = document.getElementById(section+'_children')
  sectionChild.className="showme"
  if(document.all[SECTIONLOC].children[0].className == "TIERTWO"){
  document.all[SECTIONLOC].children[0].className = "TIERTWO_ON"
  }

  if(PAGELOC != "" && document.getElementById(SECTIONLOC+'_'+PAGELOC)){
  document.all[SECTIONLOC+'_'+PAGELOC].children[0].className = "TIERTWO_SUB_ON"
  }else{
  }
}else{
    document.all[SECTIONLOC].children[0].className = "TIERTWO_ON"
}
}

function cOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
  if(td.className == "TIERTWO"){
  }else{
    td.className = "TIERTWO_OVER"
  }
}
}

function cOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
  if(td.className == "TIERTWO"){

  }else{
    td.className = "TIERTWO_OFF"
  }
}
}


