/*function whatPage(){
if(document.all && LOC != ""){
  if(document.all[LOC].children[0].className == "TIERTWO"){
    document.all[LOC].children[0].className = "TIERTWO_ON"
    } else if(document.all[LOC].children[0].className == "TIERTWO_SUB") {
    document.all[LOC].children[0].className = "TIERTWO_SUB_ON"
    }
  }else{ }}
*/

function whatPage(){
  if(document.getElementById && LOC != "" && SECTION != ""){
    if(document.getElementById(LOC).children[0].className == "TIERTWO"){
      document.getElementById(LOC).children[0].className = "TIERTWO_ON"
    } else if(document.getElementById(LOC).children[0].className == "TIERTWO_SUB") {
    document.getElementById(LOC).children[0].className = "TIERTWO_SUB_ON"
    }
//  if(document.all && LOC != "" && SECTION != ""){
//    if(document.all[LOC].children[0].className == "TIERTWO"){
//      document.all[LOC].children[0].className = "TIERTWO_ON"
//    } else if(document.all[LOC].children[0].className == "TIERTWO_SUB") {
//    document.all[LOC].children[0].className = "TIERTWO_SUB_ON"
//    }
  }else if(document.getElementById && LOC != "" && SECTION == ""){
  }
  if(SECTION != ""){
    document.images[SECTION].src = "/teen/images/"+SECTION+"_on.gif"
  }
/*
  if(document.all){
    if(SECTION == "civic"){document.all.colorBar.style.backgroundColor = "#E95600"}
    if(SECTION == "community"){document.all.colorBar.style.backgroundColor = "#EF9A31"}
    if(SECTION == "culture"){document.all.colorBar.style.backgroundColor = "#FFCA05"}
    if(SECTION == "environment"){document.all.colorBar.style.backgroundColor = "#89CC59"}
    if(SECTION == "government"){document.all.colorBar.style.backgroundColor = "#116903"}
    if(SECTION == "publicsafety"){document.all.colorBar.style.backgroundColor = "#19196F"}
    if(SECTION == "transportation"){document.all.colorBar.style.backgroundColor = "#0066CC"}
    if(SECTION == "utilities"){document.all.colorBar.style.backgroundColor = "#009EFF"}
    if(SECTION == "visiting"){document.all.colorBar.style.backgroundColor = "#892122"}
  }else{
    return
  }
*/
}

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"
  }}}
  
function ImgOver(obj,state){
if(state==1){
  obj.src = "/teen/images/"+obj.id+"_on.gif"
}else{
  obj.src = "/teen/images/"+obj.id+"_off.gif"
  whatPage()
}
}
