$(document).ready(
	function(){
		$("#col_rh a").click(
			function(){
					$("#col_cadastro").html("");
					$("#col_cadastro").html("<span style='margin-right:10px;'>Carregando...</span><img src='imagens/ajax.gif' />");
					$.get(
						$(this).attr("href"),
						{aj:"1"},
						function(data,textStatus){
							texto=data;
							//Desfaz o urlencode
							texto=texto.replace(/\+/g," ");
							texto=unescape(texto);							
							$("#col_cadastro").html(texto);
						});
					return false;
			}			
		)
	}
)
