function getHomeInfo() {
	$.post("common/script/getHomeInfo.php?r="+Math.random(), {
	}, function(result){
		//alert(result);
		
		if (result == "-1") {
			alert("データの取得に失敗しました。");
		} else {
			var list = result.split("##");
			document.getElementById("eventInfo").innerHTML = list[0];
			document.getElementById("sakuhinInfo").innerHTML = list[1];
			document.getElementById("humanInfo").innerHTML = list[2];
		}
	});
}

