jQuery(function($) {
	$('#this_month').calendar({
		year: 2012, // 翌月の年
		month: 02, // 翌月
		events: { // 定休日の設定
			'2012-02-01': {title: '定休日'},
			'2012-02-08': {title: '定休日'},
			'2012-02-15': {title: '定休日'},
			'2012-02-22': {title: '定休日'},
			'2012-02-29': {title: '定休日'}
		}
	});
	$('#next_month').calendar({
		year: 2012, // 翌月の年
		month: 03, // 翌月
		events: { // 定休日の設定
			'2012-03-07': {title: '定休日'},
			'2012-03-14': {title: '定休日'},
			'2012-03-21': {title: '定休日'},
			'2012-03-28': {title: '定休日'}
		}
	});
});

