function get(id)
{
	return document.getElementById(id);
}

function muda()
{
	if(get('adicionar').style.display == 'none')
	{
		get('fotos').style.display = 'none';
		get('adicionar').style.display = 'block';
		get('mudar').value = 'Fotos Cadastradas';
	}
	else
	{
		get('fotos').style.display = 'block';
		get('adicionar').style.display = 'none';
		get('mudar').value = 'Adicionar Fotos';
	}
}

function buscar(el)
{
	el.value = 'Digite aqui o que procura';
}

function validaContato()
{
	if(document.contatoForm.nome.value=="") {
		document.getElementById("highLightNome").style.display = "block";
		return false;
	}else{
		document.getElementById("highLightNome").style.display = "none";
	}
	if(document.contatoForm.email.value=="") {
		document.getElementById("highLightEmail").style.display = "block";
		return false;
	}else{
		document.getElementById("highLightEmail").style.display = "none";
	}
	if(document.contatoForm.mensagem.value=="") {
		document.getElementById("highLightMensagem").style.display = "block";
		return false;
	}else{
		document.getElementById("highLightMensagem").style.display = "none";
	}
}
