var colors = new Array();

function highlightItem(obj) {
	colors[obj.className] = obj.style.backgroundColor;
	obj.style.backgroundColor = "white";
}

function dimItem(obj) {
	obj.style.backgroundColor = colors[obj.className];
}