jQuery(function($) {

	$('#b_calendar').calendar({

		// 休みの設定
		events: {

			'2010-12-30': {	title: '年末年始休み'},
			'2010-12-31': {	title: '年末年始休み'},
			'2011-01-01': {	title: '年末年始休み'},
			'2011-01-02': {	title: '年末年始休み'},
			'2011-01-03': {	title: '年末年始休み'},
			'2011-01-04': {	title: '年末年始休み'},

			'2011-05-01': {	title: 'GW休み'},
			'2011-05-02': {	title: 'GW休み'},
			'2011-05-03': {	title: 'GW休み'},
			'2011-05-04': {	title: 'GW休み'},
			'2011-05-05': {	title: 'GW休み'},

			'2011-08-13': {	title: 'お盆休み'},
			'2011-08-14': {	title: 'お盆休み'},
			'2011-08-15': {	title: 'お盆休み'},
			'2011-08-16': {	title: 'お盆休み'}

		}

	});

});


