<!--
function SwitchOver(current,linkid)
	{
	if(current.className != 'HeaderOn')
		{current.style.backgroundColor = '#F7EBBE'; current.style.color = 'navy'; document.getElementById(linkid).style.color = 'navy';}
	}
	function SwitchOut(current,linkid)
	{
	if(current.className != 'HeaderOn')
		{current.style.backgroundColor = '#F0A50E'; current.style.color = 'white'; document.getElementById(linkid).style.color = 'white';}	
	}
	function RESwitchOver(current,linkid)
	{
	if(current.className != 'REHeaderOn')
		{current.style.backgroundColor = '#d3dbe3'; current.style.color = 'navy'; document.getElementById(linkid).style.color = 'navy';}
	}
	function RESwitchOut(current,linkid)
	{
	if(current.className != 'REHeaderOn')
		{current.style.backgroundColor = '#7190D9'; current.style.color = 'white'; document.getElementById(linkid).style.color = 'white';}	
	}
	function AppSwitchOver(current,linkid)
	{
	if(current.className != 'AppHeaderOn')
		{
		current.style.backgroundColor = '#a5cfa5'; current.style.color = 'navy'; document.getElementById(linkid).style.color = 'navy';}
	}
	function AppSwitchOut(current,linkid)
	{
	if(current.className != 'AppHeaderOn')
		{current.style.backgroundColor = '#669966'; current.style.color = 'white'; document.getElementById(linkid).style.color = 'white';}
	}	
								
//-->