(function($){
    
   
    
   main = function() {
	 var par = window.location.search;
	 // Put an animated GIF image insight of content
  	$("#tutti").empty().html('<img style="margin:auto;" src="/img/loader.gif" />');

  // Make AJAX call
   var lat = $('#mylat').text();
   var lon = $('#mylon').text();
   var pass = $('#mypass').text();
   var id = $('#myid').text();
   
   $.getJSON('/php/getcistra.php?ltd='+lat+'&lng='+lon+'&key='+pass+'&id='+id, function(data) {
  	var items = [];

  $.each(data.Tutti, function(key, val) {
	var city = "";
	if (val.City) {
			city = '<div class="cis-list-city">' + val.City + '</div>';
	}
		
							  
    items.push('<div class="cis-list" style="height:60px;"><div class="cis-list-img" style="width:60px;float:left;clear:none;"><img src="http://graph.facebook.com/'+val.id+'/picture" alt="'+val.Nome+'"/></div><div class="cis-list-name">' + val.Nome+ ' '+ val.Cognome + '</div>'+city+'</div>');
	
	
	
  });

  $("#tutti").empty();
  $('<ul/>', {
    'class': 'my-new-list',
    html: items.join('')
  	}).appendTo('#tutti');
	});
   
	
  
  }
 

})(jQuery);
 

