$(document).ready(function(){
	$('#preto').click(function(){
		$('#exibir-mapas-filiais').fadeOut();
		$('#preto').fadeOut();
	})
})

function abrirdiv(div){
	$('.conteudo-servicos').css('display','none');
	$('#'+div).show();
	$('#coluna-Esquerda').click();
}

function post(arquivo,form){
	var serializeDados = $('#'+form).serializeArray();
	$.ajax({
		url: arquivo, 
		dataType: 'html',
		data: serializeDados,
		type: 'POST',
		success: function(data, textStatus) {
			var retorno = data.split('|',3);
			if(retorno[0].length >=  1){
				if(retorno[0]=='I'){
					$('#'+form)[0].reset();
					alert(retorno[1]);
					//$('#receber').html('<p><strong>'+retorno[1]+'</strong></p>');
				}else{
					//$('#receber').html(retorno[1]);
					alert(retorno[1]);
					$('#'+retorno[2]).focus();
				}
			}
		},
		error: function(xhr,er) {
			$('#receber').html('<p>Error ' + xhr.status + ' - ' + xhr.statusText + '<br />Tipo de erro: ' + er +'</p>'+'<a href="javascript:fechar(\'#resposta\');" title="Fechar"><img src="img/fechar.gif" alt="Fechar" border="0" id="fechar"></a>');
			$('#receber').fadeIn();
		},
		complete: function(){
			$('#receber').fadeIn()
		}
	});
}

function filiais(arquivo){
	$('#exibir-mapas-filiais').load('inc/contato/'+arquivo+'.php');
	$('#exibir-mapas-filiais').fadeIn();
	$('#preto').fadeIn();
}
