function setButton(obj, color){
	if(color=="red") img="btn-selected.png";
	else if(color=="gray") img="btn.png";
	obj.style.background="url('images/"+img+"')";
}
