function mudar(valor2,valor){
	str = document.getElementById(valor).style;
	if (valor2 =="1"){
		str.background="#f0f0da";
		str.color="#b33550";
		}
	else
	{
	str.background="#3d659a";
	str.color="#ffffff";
	}
}
