function getInformation() {
	$.post("common/php/news.php?r="+Math.random(), {
		cmd : "GET_INFO"
	}, function(result){
		//alert(result);
		document.getElementById('newslist').innerHTML = result;
	});
}

$(window).load(function () {
	getInformation();
});

