
// the left hand navigation mouse overs

function highNavItem(obj) {
	if (typeof(obj) != 'object') {
		obj = document.getElementById(obj);
	}
	obj.style.backgroundColor = '#FFC000';
//	obj.style.backgroundColor = '#FFFFFF';   
	obj.style.color = '#000000';
	obj.style.cursor = 'pointer';
}

function lowNavItem(obj) {
	if (typeof(obj) != 'object') {
		obj = document.getElementById(obj);
	}
	obj.style.backgroundColor = '#1C3F60';
	obj.style.color = '#CACACA';	
}


var flyoutOn = new Image();
flyoutOn.src = "i/flyout_back2.gif";

// the left hand nav, flyouts

function highFlyItem(obj) {
	obj.style.cursor = 'pointer';
	
//	obj.style.backgroundImage = 'url(i/flyout_back.gif)';
   obj.style.backgroundColor = '#F3CD21';
	
}

function lowFlyItem(obj) {
//	obj.style.backgroundImage = 'url(i/flyout_back.gif)';
//	obj.style.backgroundImage = '';
   obj.style.backgroundColor = '#DAAD40';
}



