function highlight(el) {
	el.style.backgroundColor='#E7F0F8';
}

function unhighlight(el) {
	el.style.backgroundColor = '#fff';
}