var currentFace = 'mgmt';

function changeFace(selectedFace) {
	document.getElementById(currentFace).style.display = 'none';
	document.getElementById(selectedFace).style.display = 'block';
	currentFace = selectedFace;
}