function ValidaGaleria() {
        if(document.getElementById('nome').value.length == 0)  {
            $('.loading').fadeOut(150).fadeIn(250).empty().addClass('erro').text('Qual o nome da categoria?');
            document.getElementById('nome').focus();
			return false;
        }
}

function DeletaDado(id,tabela) {
  $.post
			(
				'apagar.php',
				{
					id     : id,
                    tabela : tabela
				},

				function(resposta)
				{
                 if(resposta == "erro")
                  {
                   $('.loading').fadeOut(150).fadeIn(250).empty().addClass('erro').text('Ocorreu um erro.');
                  }
                }
            );
}

function DeletaImagem(caminho,foto) {
  $.post
			(
				'apagarfoto.php',
				{
					caminho     : caminho,
                    foto        : foto
				},

				function(resposta)
				{
                 if(resposta == "erro")
                  {
                   $('.loading').fadeOut(150).fadeIn(250).empty().addClass('erro').text('Ocorreu um erro.');
                  }
                }
            );
}
