function ch_calendar_prev(shop){
	var cid = 'calendar_now_' + shop;
	$("#" + cid).fadeOut("nomal",function(){
	cid = 'calendar_prev_' + shop;
	$("#" + cid).fadeIn("nomal");
	});

	cid = 'calendar_next_' + shop;
	$("#" + cid).css("display","none");
	

}

function ch_calendar_now(shop){
	var cid = 'calendar_prev_' + shop;
	if($("#" + cid).css("display")=="block"){
		$("#" + cid).fadeOut("nomal",function(){
			cid = 'calendar_now_' + shop;
			$("#" + cid).fadeIn("nomal");
		});
		
		cid = 'calendar_next_' + shop;
		$("#" + cid).css("display","none");
	}
	
	cid = 'calendar_next_' + shop;
	if($("#" + cid).css("display")=="block"){
		$("#" + cid).fadeOut("nomal",function(){
			cid = 'calendar_now_' + shop;
			$("#" + cid).fadeIn("nomal");
		});

		cid = 'calendar_prev_' + shop;
		$("#" + cid).css("display","none");
	}
}

function ch_calendar_next(shop){
	var cid = 'calendar_now_' + shop;
	$("#" + cid).fadeOut("nomal",function(){
	cid = 'calendar_next_' + shop;
	$("#" + cid).fadeIn("nomal");
	});

	cid = 'calendar_prev_' + shop;
	$("#" + cid).css("display","none");
	
}

function fadeinout(cid){
	
}
