// JavaScript Document

function mudaCor(cor,id){
	
	x = document.getElementById(id);
	x.style.backgroundColor = cor;
	
}