function switchColorIn(obj) {
	obj.style.backgroundColor='#889999';
}

function switchColorOut(obj) {
	obj.style.backgroundColor='grey';
}
