function leftNavOn(x){
	document.getElementById(x).style.color='#006CD2'; 
	document.getElementById(x+'Background').style.backgroundColor='#FFF';
}

function leftNavOff(x) {
	document.getElementById(x).style.color='#FFF'; 
	document.getElementById(x+'Background').style.backgroundColor='';
}