// $(document).ready(function(){}) == $(function(){})
$(function()
{
	$.ajax(
	{
		//url: 'http://localhost/Atrapantes/www/wp-content/themes/atrapantes/listActiveSites.xml?nocache='+Math.random()*1000,
		url: '/atrapantes/listActiveSites.xml?nocache='+Math.random()*1000,
		type: 'GET',
		dataType: 'xml',
		error: function(){ },
		success: function(datos)
		{
			$('data item',datos).each(function(){
				var texto = $(this).text();
				var enlace = $(this).attr("url");
	
				$('<li>')
					.html('<div>CERCA DE '+ '<a href="' +enlace+'" target="_blank">'+texto+'</a></div>')
					.appendTo('#caja_localizados ul');
			});
		}

	});
});