function inout(id) {
	var x = document.getElementById(id);
	x.style.backgroundColor = (x.style.backgroundColor == '') ? '#dddddd' : '';
}
