function doColorGreenish(item) {
	document.getElementById(item.id).style.color = '#7EBBD9';
}

function undoColorGreenish(item) {
	document.getElementById(item.id).style.color = '#4E8BA9';
}

function doColorMenu(item) {
	document.getElementById(item.id).style.color = '#7EBBD9';
}

function undoColorMenu(item) {
	document.getElementById(item.id).style.color = 'white';
}

function doColorSubMenu(item) {
	document.getElementById(item.id).style.color = '#7EBBD9';
}

function undoColorSubMenu(item) {
	document.getElementById(item.id).style.color = '#4E8BA9';
}

