function escolhacapuche_listarEmpreendimentos(idcidade) {
	var container = $('#containercidadeescolhacapuche');
	var label = $('#containercidadeescolhacapuchelabel');
	if (container.length && label.length) {
		container.empty();
		label.text("Carregando...");
		$.getJSON('../ajaxescolhacapuche?pagina=listarempreendimentos&cidade='+idcidade+'&jsoncallback=?',function (dados) {
			if (dados.sucesso = '1') {
				$.each(dados.lista,function (i,item) { 
					container.append("<li valor=\"\"><div><a href=\"javascript:;\" class=\"escolhacapucheempreendimento\" empreendimento=\""+item.id+"\"><span>"+item.label+"</span></a></div></li>");
				});
				
				label.text("Empreendimento");
				$(".escolhacapucheempreendimento").click(function () { 
					var _obj = $(this);
					window.location.href = 'imoveis-det?empreendimento='+_obj.attr("empreendimento");
				});
			}
		});
	}
}