// 【ホーム】最新情報
function getNews() {
	j$.post("common/php/news.php?r="+Math.random(), {
		limit : 6,
		cmd : "news"
	}, function(result){
		//alert(result);
		document.getElementById('news').innerHTML = result;
	});
}

// 【スペシャルイベント】カウント
function getCount() {
	$.post("../common/php/news.php?r="+Math.random(), {
		cmd : "count"
	}, function(result){
		//alert(result);
		document.getElementById('count').innerHTML = result + '/3000';
	});
}
