// apAddLoadEvent(NavInit);
function apAddLoadEvent(aponfunc) {
  var apoldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = aponfunc;
  } else {
    window.onload = function() {
      apoldonload();
      aponfunc();
    }
  }
}
function NavInit(){
	if (theNavState != '') {
		MM_swapImage(theNavState,'','../images/nav/'+theNavState+'On.gif',1);
	}
}
function NavRollOver(theElement){
document.getElementById(theElement).style.backgroundColor = "#E46804";
}
function NavRollBack(theElement){
	if (theElement != theNavState) {
		document.getElementById(theElement).style.backgroundColor = "#54636D";
	} else {
		document.getElementById(theElement).style.backgroundColor = "#E46804";
	}
}