function ajaxLink(div,pag) {
	$.get(pag,{qazc:'1'}, function(retorno){ $("#"+div).html(retorno); });
}

$(function() {
	function log(message) {
		$("<div/>").text(message).prependTo("#log");
		$("#log").attr("scrollTop", 10);
	}
	
	$.ajax({
		url: "animes_list.xml",
		dataType: "xml",
		success: function(xmlResponse) {
			var data = $("anime", xmlResponse).map(function() {
				return {
					value: $("nome", this).text()
				};
			}).get();
			
			$("#anime").autocomplete({
				source: data,
				minLength: 3
			});
		}
	})
	
});