
function navBarRolloverBlock(id) 
{
	document.getElementById(id).style.background="#002E65";
	document.getElementById(id + "Text").style.color="#002E65";
}

function navBarRolloutBlock(id) 
{
	document.getElementById(id).style.background="#FFFFFF";
	document.getElementById(id + "Text").style.color="#4C4C4C";
}

function navBarRollover(id) 
{
	document.getElementById(id).style.color="#002E65";
	document.getElementById(id.substr(0,id.length-4)).style.background="#002E65";
}

function navBarRollout(id) 
{
	document.getElementById(id).style.color="#4C4C4C";
	document.getElementById(id.substr(0,id.length-4)).style.background="#FFFFFF";
}



function rollOverNav(obj)
{
	obj.style.background="#E7E7E8";
}

function rollOutNav(obj)
{
	obj.style.background="#f9E4A6";
}

