
function mudaFundo(alvo) {
	if (document.getElementById(alvo).value==document.getElementById(alvo).title) {
		document.getElementById(alvo).value = '';
		addClass(document.getElementById(alvo),'preto');
	} else {
		removeClass(document.getElementById(alvo),'preto');
	}
}

function voltaFundo(alvo) {
	if (document.getElementById(alvo).value=='') {
		document.getElementById(alvo).value = document.getElementById(alvo).title;
		removeClass(document.getElementById(alvo),'preto');
	} else {
		addClass(document.getElementById(alvo),'preto');
	}
}

