function changeColor( id, color )
{
	object = document.getElementById( id );
	object.style.backgroundColor = color;
}
