// JavaScript Document
function changeColor(id, color) {
	var element = document.getElementById(id);
	element.style.backgroundColor = color; 
}
