function fColor(status){
	if (status == "in"){
		this.style.backgroundColor='#ffffff';
	} else {
		this.style.backgroundColor='#ababab';
	};
     
};
