function highlightBox(box) {
	box.style.backgroundColor = "#a99479";
}

function unhighlightBox(box) {
	box.style.backgroundColor = "#cdbeaa";
}
