// functions for secondary nav bars
currentNavType='';
currentNavState='';
function endTabOver(NavType,NavState) {
        currentNavType=NavType;
        currentNavState=NavState;
        if(currentNavType=='global') {
                if(currentNavState=='on') {
                document.getElementById('endfloat_global').style.background = '#F5DB7A';
                }
                else {
                document.getElementById('endfloat_global').style.background = '#d6d6d6';
                }
        }
        else {
          document.getElementById('endfloat_local').style.background="#eee";
        }
}
function endTabOut() {
        if(currentNavType=='global') {
                if(currentNavState=='on') {
                document.getElementById('endfloat_global').style.background = '#f9ce2a';
                }
                else {
                document.getElementById('endfloat_global').style.background = '#8e9fcc';
                }
        }
        else {
          if(currentNavState=='on') {
                  document.getElementById('endfloat_local').style.background="#f9ce2a";
          }
          else {
                  document.getElementById('endfloat_local').style.background="#1a1d55";
          }
        }
}
//end

// dummy functions for nav bars in non-IE5 & IE6 browsers
function ddMenuShow() {
}
function ddMenuHide() {
}
function blMenuOver() {
}
function blMenuOut() {
}
function blMenuAncOver() {
}
function blMenuAncOut() {
}
function foMenuL2Show() {
}
function foMenuL2Hide() {
}
function foMenuL3Show() {
}
function foMenuL3Hide() {
}
function initSelects() {
}
function hideSelects() {
}
function showSelects() {
}
function loginOver() {
}
function loginOut() {
}
//end

// dummy functions for popup menus 
function showPopupMenu(DivID) {
}
function hidePopupMenu() {
}
//end