function hilite(obj){
	obj.style.backgroundColor = '#ffefd5';
}

function hilite2(obj){
	obj.style.backgroundColor = '#f9f9f9';
}

function hilite_custom(obj,color){
	/* color in hex format */
	obj.style.backgroundColor = color;
}

