	function getnews(numb) {
		/*
		$.ajax({
   			type: "GET",
   			url: "http://www.3s.lv/lat/?numb=" + numb,
 			data: "",
 			success: function(msg){
    		//replace news
    		$("#allin").fadeOut(100, function() {
		$("#allin").html(msg);
		$("#allin").fadeIn(500);	
		});
			var nextn = numb + 1;
   			setTimeout('getnews(' + nextn + ')', 7000);
  		 }
 		});
 		*/
}
