function hilite(item,color) {
	item.style.backgroundColor = color;
}
function unlite(item) {
	item.style.backgroundColor = '';
}

