
// Destaques Home
$(document).ready(function(){		
	
	$("#superDest .cycleDestSuper").jCarouselLite({
		btnNext: "#superDest .proximo",
		btnPrev: "#superDest .anterior",
		auto: 4000,
		speed: 800,
		visible: 2,
		cleartype: 1
	});
	
	
	$("#associada .cycleAssociada").jCarouselLite({
		btnNext: "#associada .pro",
		btnPrev: "#associada .ant",
		auto: 4000,
		speed: 800,
		visible: 3,
		cleartype: 1
	});
	
	
	if($("#destLanc img").length > 0){
		$("#destLanc .cycleDestLanc").jCarouselLite({
			btnNext: "#destLanc .proximo",
			btnPrev: "#destLanc .anterior",
			auto: 4000,
			speed: 800,
			visible: 4,
			cleartype: 1
		});
	}
	$("#ddlMetro").click(function(){
        $("#lnkMetro").trigger("click");
        $("#btnEnviar").focus();
    });
	
});

//Mascara Telefone
$(document).ready(function(){
	$("#Telefone").mask("(99) 9999-9999");
	$("#Celular").mask("(99) 9999-9999");	
	$("#Telefone_imobiliaria").mask("(99) 9999-9999");	
	$("#Telefone_comercial").mask("(99) 9999-9999");
	$("#Telefone_comercial_conjuge").mask("(99) 9999-9999");
	$("#Telefone_banco").mask("(99) 9999-9999");	
	$("#Telefone_banco2").mask("(99) 9999-9999");	
	$("#Telefone_empresa_contato").mask("(99) 9999-9999");
	$("#Telefone_empresa_contato2").mask("(99) 9999-9999");
	$("#Telefone_residencial").mask("(99) 9999-9999");
	$("#Telefone_banco3").mask("(99) 9999-9999");
	$("#Telefone_empresa_contato3").mask("(99) 9999-9999");
	$("#Telefone_locador").mask("(99) 9999-9999");
	$("#Telefone_conjuge").mask("(99) 9999-9999");
	$("#Celular_conjuge").mask("(99) 9999-9999");
	$("#Telefone_Residencial").mask("(99) 9999-9999");
	$("#Telefone_Comercial").mask("(99) 9999-9999");
	$("dd #telefone").mask("(99) 9999-9999");	
	$("#celular").mask("(99) 9999-9999");	
	$("#Fax").mask("(99) 9999-9999");	
	$("#Celular_locador").mask("(99) 9999-9999");
	$("#tx_telefone").mask("(99) 9999-9999");
	
	$("#Data_nascimento").mask("99/99/9999");
	$("#Data_nascimento_conjuge").mask("99/99/9999");
	$("#Data_Nascimento").mask("99/99/9999");	
	
	$("#Cpf").mask("999.999.999-99");
	$("#Cpf_conjuge").mask("999.999.999-99");	
	
	$("#Cep").mask("99999-999");
	$("#Cep_locador").mask("99999-999");
	$("#Cep_conjuge").mask("99999-999");
	
	$("#txtArea").maskDecimal();
	$("#txtAreaTot").maskDecimal();
	$("#Area_construida").maskDecimal();
	$("#Valor").maskMoney();
	$("#Valor_condominio").maskMoney();
	
});
// SLIDESHOW DA FICHA DO IMÓVEL
$(document).ready(function(){
	$('#slideShowFotos').cycle({ 
		timeout: 3000, 
		pager:  '#nav', 
		pagerAnchorBuilder: function(idx, slide) { 
			url = $(slide).find("img").attr("src").split("/");
			add = "";
			for(i = 0; i < (url.length - 1); i++){
				add += url[i] + "/";
			}
			//add += "thumbs/thumb";
			add += url[url.length - 1];
			return '<li><a href="#"><img src="' + add +'" /></a></li>'; 
		} 
	}); 
	
	$("#slideShowFotos a").slideshow();
}); 


