function ColorMe(navID) {
	document.getElementById(navID).style.backgroundColor = '#FF5C00';
}
function ColorMeOut(navID) {
	document.getElementById(navID).style.backgroundColor = 'transparent';
}
