function highlight(ELEM, MOUSE, COLOR) {
	if (MOUSE == 'over') {
		ELEM.style.borderColor = '#' + COLOR;
	} else {
		ELEM.style.borderColor = '#e6e6e6';
	}
	return true;
}
