//change the column's background color while mouse moving on
function scbg(objRef, state) {
	objRef.style.backgroundColor = (1 == state) ? '#EEEEEE' : '#FFFFFF';
	return;
}