function pinta(obj) {
	obj.style.backgroundColor="#C4C8A8";
	obj.style.color="#000";
	if((obj.value=="nome")||(obj.value=="e-mail")||(obj.value=="telefone")||(obj.value=="mensagem")){
		obj.value="";
	}
}
function apaga(obj) {
	obj.style.backgroundColor="#ffffff";
	obj.style.color="#5D633E";
}

function pinta2(obj) {
	obj.style.backgroundColor="#ccc";
	obj.style.color="#333";
}
function apaga2(obj) {
	obj.style.backgroundColor="#fff";
	obj.style.color="#333";
}
