function highlight(person) {
	document.getElementById('a').style.backgroundColor = "#CCC";
	document.getElementById('b').style.backgroundColor = "#CCC";
	document.getElementById('c').style.backgroundColor = "#CCC";
	document.getElementById('one').style.backgroundColor = "#CCC";
	document.getElementById('two').style.backgroundColor = "#CCC";
	document.getElementById('three').style.backgroundColor = "#CCC";
	document.getElementById('four').style.backgroundColor = "#CCC";
	document.getElementById('five').style.backgroundColor = "#CCC";
	document.getElementById('six').style.backgroundColor = "#CCC";
	document.getElementById('seven').style.backgroundColor = "#CCC";
	document.getElementById('eight').style.backgroundColor = "#CCC";

	highlightcolor = "#09C";
	if (person=="Amy") {
		document.getElementById('b').style.backgroundColor = highlightcolor;
		document.getElementById('three').style.backgroundColor = highlightcolor;
		document.getElementById('seven').style.backgroundColor = highlightcolor;
	}
	if (person=="Binu") {
		document.getElementById('a').style.backgroundColor = highlightcolor;
		document.getElementById('one').style.backgroundColor = highlightcolor;
		document.getElementById('three').style.backgroundColor = highlightcolor;
		document.getElementById('five').style.backgroundColor = highlightcolor;
		document.getElementById('seven').style.backgroundColor = highlightcolor;
	}
	if (person=="Chris") {
		document.getElementById('b').style.backgroundColor = highlightcolor;
		document.getElementById('three').style.backgroundColor = highlightcolor;
		document.getElementById('six').style.backgroundColor = highlightcolor;
	}
	if (person=="Beatrice") {
		document.getElementById('a').style.backgroundColor = highlightcolor;
		document.getElementById('b').style.backgroundColor = highlightcolor;
		document.getElementById('five').style.backgroundColor = highlightcolor;
	}
	if (person=="Michelle") {
		document.getElementById('a').style.backgroundColor = highlightcolor;
		document.getElementById('one').style.backgroundColor = highlightcolor;
		document.getElementById('six').style.backgroundColor = highlightcolor;
	}
	if (person=="Jason") {
		document.getElementById('c').style.backgroundColor = highlightcolor;
		document.getElementById('one').style.backgroundColor = highlightcolor;
		document.getElementById('four').style.backgroundColor = highlightcolor;
		document.getElementById('five').style.backgroundColor = highlightcolor;
		document.getElementById('six').style.backgroundColor = highlightcolor;
	}
	if (person=="Vanessa") {
		document.getElementById('c').style.backgroundColor = highlightcolor;
		document.getElementById('three').style.backgroundColor = highlightcolor;
		document.getElementById('seven').style.backgroundColor = highlightcolor;
	}
	if (person=="Josh") {
		document.getElementById('one').style.backgroundColor = highlightcolor;
		document.getElementById('four').style.backgroundColor = highlightcolor;
		document.getElementById('seven').style.backgroundColor = highlightcolor;
	}
	if (person=="Crystal") {
		document.getElementById('c').style.backgroundColor = highlightcolor;
		document.getElementById('four').style.backgroundColor = highlightcolor;
		document.getElementById('five').style.backgroundColor = highlightcolor;
	}
}