
function weather_news(path) {
	   $.ajax({
	  url: path,
	  cache: false,
	  success: function(html){
		$("#top-list").get(0).innerHTML=html;
	  }
	});
}
