function NewLocali(){

$.ajax({
   type: "POST",
   url: "news/funzione_dati_locale.php",
   data: "da_l="+ da_l+"&lang="+lingua,

	success: function(risposta){
	
		  $("#news_locali").html(risposta);	
		  NewCircuito()	;
		}});}
		
		function NewCircuito(){

nrc = nrc -1;
		  if (nrc>da_c){
		 da_c++;
		
		 }else{
		 da_c = 0 ;
			 
		 }

$.ajax({
   type: "POST",
   url: "news/funzione_dati_circuito.php",
   data: "da_c="+ da_c,

	success: function(risposta){
		  $("#news_circuito").html(risposta);
		  nrl = nrl -2;
		  
		  if (nrl>da_l){
		 da_l++;
		
		 }else{
		 da_l = 0 ;
		 	 
		 }
		  
		 
	
		  window.setTimeout("NewLocali('da_l')",10000);	
	
		}});}