var date = new Date();
var this_year = date.getYear()+1900;
var this_month = date.getMonth()+1;

$(function(){
	$("#calendar").load("http://omnioo.com/omnioolab/calendar/"+this_year+"/0"+this_month+"/");
})
    
function changeMonth (loading_page) {
	//初期で読み込んだファイルの前の時を算出
	//var before_month = this_month -1;
	$("#calendar").load(loading_page);
}

