/*
 * カレンダー詳細
 *
 * @auther 	yamazaki@re-set.ne.jp(2009.12.13)
 * @update	1.0.0
 */

$(function(){
	$("#calendar-window").css("padding","0");
});

// カレンダー詳細の表示
function openDetails(day,type){
	$.post('/jquery/calendar/', {"day":day,"type":type}, function(res){
		dispData(res);
	});
}
function dispData(res){
	if(res){
		$("#calendar-window").html(res);
		$("#calendar-window").css("padding","145px 0 0 110px");
	}
}

function closeDetails(){
	$("#calendar-window").html("");
	$("#calendar-window").css("padding","0");
}
