/**
 * イベント情報をRSSから取得し表示
 *
 * @auther 	yamazaki@re-set.ne.jp(2010.08.04)
 * @version	1.0.0
 */
 
// カレンダー情報を表示
$(function(){
	$.post('/php/rss.php', {}, function(res){
		if(res){
			$("#info-event2").html(res);
		}
	});
});

