// JavaScript Document

 function inicial(){
    document.location.href = "index_on.php";
  }

 function empreendimentos(){
    document.location.href = "empreendimento.php";
  }

 function fotos(){
    document.location.href = "fotos.php";
  }

 function Vendas(){
    document.location.href = "vendas.php";
  }

 function aconstrutora(){
    document.location.href = "construtora.php";
  }

 function localizacao(){
    document.location.href = "localizacao.php";
  }

 function contato(){
    document.location.href = "contato2.php";
  }

function cadastro() {
		$("#msg_comunicado").load("contato.php");
		$("#msg_comunicado").dialog('destroy');
    	$("#msg_comunicado").dialog({
            position : 'top',
            autoOpen : true,
            width :560,
            heigth: 530,
            modal : true,
            title : "Cadastre-se",
            buttons : ({
                   "FECHAR" : function() {
                       $("#msg_comunicado").dialog('close');
                   }
            })
          });
		
  }



/*---------------------------------------------------CONTATO----------------------------------------------------------*/

   function limpar_mensagem() {
	$('#nome').val("");
	$('#empresa').val("");
	$('#email').val("");
	$('#fone').val("");
	$('#cidade').val("");
	$('#uf').val("");
	$('#mensagem').val("");
  }

  function enviar_mensagem() {
	loading("resposta");
        $("#frm_contato").css("display","none");
        $.ajax({
		type : "GET",
		url : "enviar_contato.php",
		data : ({
			nome : $('#nome').val(),
			assunto : $('#assunto').val(),
			fone : $('#fone').val(),
			cidade : $('#cidade').val(),
			uf : $('#uf').val(),
			email : $('#email').val(),
			msg : $('#mensagem').val()
		}),
		success : function(msg) {
			$('#resposta').html(msg);
			if ($('#resposta').val().indexOf("Erro")!=-1) {
				$('#nome').val("");
				$('#assunto').val("");
				$('#email').val("");
				$('#fone').val("");
				$('#cidade').val("");
				$('#uf').val("");
				$('#mensagem').val("");
			} else {
                           $("#frm_contato").css("display","block");
                        }
		}
	});
  }
    /*---------------------------------------------------CONTATO----------------------------------------------------------*/

function clickHandler(e,link,imagem) {
    $(imagem).fadeOut('slow', function() {
        $("#fotos_load").fadeIn("fast", function(){});
        $(imagem).attr("src", $(link).attr("href"));
    });
}

function mostrar_imagem()  {
    $("#fotos_load").fadeOut("fast", function(){
        $("#fotos_maiores img").fadeIn('slow');
    });
}

function galeria() {
     $("#conteudo_dir a").click(function(e){
        clickHandler(e,this,$("#fotos_maiores img"));
        return false;
     });
}
