function changeColor(status, item) {
	if (status == 'in') {
		item.bgColor = '#FF0000';
	}
	else {
		item.bgColor = '#99BBFF';
	}
}

