function highlight(node) { highlightedCell = node; node.style.backgroundColor = 'red'; if (highlightedCell) { highlightedCell.style.backgroundColor = ''; } }
function highlight(node) { node.style.backgroundColor = ''; }