function LerProd(cod,qual_div){
	
	pag = "exibe_prod.php?id_catg="+cod;
	formata_div = "#"+qual_div;	
	
	var iconCarregando = $('<img src="images/mini.gif" /><span class="rotulo_campos_esq_verm"><strong>Carregando. Por favor aguarde...</strong></span>');
	
	$.ajax({
			url: pag, 
			dataType: 'html',
			type: 'GET',
			beforeSend: function(){
			$(formata_div).html(iconCarregando);
			},
			complete: function() {
			$(iconCarregando).remove();
			},
			success: function(data, textStatus) {
			$(formata_div).html(data);
			},
			error: function(xhr,er) {
			$(formata_div).html('<p class="destaque">Error ' + xhr.status + ' - ' + xhr.statusText + '<br />Tipo de erro: ' + er +'</p>')
			}		
		});	
}


		
		

