// JavaScript Document
function getTiposZ(pg) {
	var r='';
	
	$.get('inc/getXml.asp?ret=xml&pm=tipos.asp?imob='+varImobCodigo+';pg='+pg+';a='+aleatorio(), function(xml) {		
		$('tipo', xml).each(function() {
			tipo = $(this).text();
			cod = $(this).attr('cod');
			r=r+'<li><a href="imovel_pesq.asp?pg='+pg+'&t='+cod+'">'+tipo+'</a></li>';
		});
		if (pg=='v') {
			r = '<a href="#" class="accessible"><img src="imagens/index/venda.jpg" /></a><ul>'+r+'</ul>';
			$('#tiposdeimoveisV').html(r);
		} else {
			r = '<a href="#" class="accessible"><img src="imagens/index/locacao.jpg" /></a><ul>'+r+'</ul>';
			$('#tiposdeimoveisL').html(r);
		}
		
	});
	
}

