// JavaScript Document
$(document).ready(function(){

	
	$("#destaqueVenda").cycle({
		cleartype: 1,
		//fx:     'scrollHorz',
		fx:     'fade',
		timeout: 20000,
		speed: 400,  
		pager:  '#cycleVenda', 
		prev:   '#prev', 
		next:   '#next', 		
		pagerAnchorBuilder: function(idx, slide) { 
		return '<li><a href="#"><span>' + slide.title + '</span><strong></strong></a></li>'; 
		} 
	});
	$("#destaqueLocacao").cycle({
		cleartype: 1,
		//fx:     'scrollHorz',
		fx:     'fade',
		timeout: 20000,
		speed: 400,  
		pager:  '#cycleLocacao', 
		prev:   '#prev2', 
		next:   '#next2', 		
		pagerAnchorBuilder: function(idx, slide) { 
		return '<li><a href="#"><span>' + slide.title + '</span><strong></strong></a></li>'; 
		} 
	});

	
});

//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();		

	
});







