// This script is used for the navigation buttons across the top of the page.

// this section superceded by table roll overs.
var navIDprevious;

function sidebar( navID, requestedState ) {

	if (requestedState == 'hover') {
	 navIDprevious = navID.style.backgroundColor; 
	 navID.style.backgroundColor = 'FF9900';
	 }
	else if (requestedState == 'out') { 
	 navID.style.backgroundColor = navIDprevious;
	}
}

function sidebarTitle( navID, requestedState ) {

	if (requestedState == 'hover') {
	 navIDprevious = navID.style.backgroundColor; 
	 navID.style.backgroundColor = 'FF9900';
  }
	else if (requestedState == 'out') { 
	 navID.style.backgroundColor = navIDprevious;
	}
}
