$(function() {


	$("#period").change(function () {
		 var url = $("#period option:selected").val();
		 location.href = url;
	});

	$('#hotel-content').hide();
	$('#area-content').hide();

	$('#tab-index .detail').click(function(){
		$('.content').hide();
		$('#plan-content').show();
		$('#tab-index').removeClass();
		$('#tab-index').addClass('tab-detail');
		return false;
	});
	$('#tab-index .hotel').click(function(){
		$('.content').hide();
		$('#hotel-content').show();
		$('#tab-index').removeClass();
		$('#tab-index').addClass('tab-hotel');
		return false;
	});
	$('#tab-index .area').click(function(){
		$('.content').hide();
		$('#area-content').show();
		$('#tab-index').removeClass();
		$('#tab-index').addClass('tab-area');
		return false;
	});



});

function update_calendar (year, month) {
	$("#schedule").load("/plan_calendar/calendar/"+plan_id+"/"+year+"/"+month);
}
