function mudaFundo(divId, cor){
	var d = document.getElementById(divId);
	d.style.backgroundColor = cor;
}