function getTiposZ(pg) {
	var r='';
	var s='';
	
	$.ajax({
		url: 'inc/getXml.asp?ret=xml&pm=tipos.asp?imob='+varImobCodigo+';pg='+pg+';a='+aleatorio(),
		async: false,
		success: function(xml) {
			$('tipo', xml).each(function() {
				tipo = $(this).text();
				cod = $(this).attr('cod');
				
				$.ajax({
					url: 'inc/getXml.asp?ret=xml&pm=cidades.asp?imob='+varImobCodigo+';pg='+pg+';t='+cod+';a='+aleatorio(),
					async: false,
					success: function(xml1) {
						s='';
						$('cidade', xml1).each(function() {
							cidade = $(this).text();
							s=s+'<li><a href="imovel_pesq.asp?pg='+pg+'&t='+cod+'&cid='+cidade+'">'+cidade+'</a></li>';
						});
					}
				});
				
				r=r+'<li><a href="imovel_pesq.asp?pg='+pg+'&t='+cod+'">'+tipo+'</a><ul>'+s+'</ul></li>';
			});
			if (pg=='v') {
				r = '<a href="#" class="accessible"><img class="mouseover" src="imagens/novotopo/novos/bt_venda.jpg" /></a><ul>'+r+'</ul>';
				$('#tiposdeimoveisV').html(r);
			} else {
				r = '<a href="#" class="accessible"><img class="mouseover" src="imagens/novotopo/novos/bt_locacao.jpg" /></a><ul>'+r+'</ul>';
				$('#tiposdeimoveisL').html(r);
			}
		}		
	});
}





