function bg_hover( thisCellRef, hoverStatus ) {
	if ( hoverStatus ) {
		thisCellRef.style.backgroundColor = '#66CCCC';
	} else {
		thisCellRef.style.backgroundColor = '#003366';
	}
}