jQuery(function($) {

	$('#example').calendar({
		 lang : 'en',
		// 初期表示する年
		year: 2011,

		
		caption: '%Y %M',

		// イベントの設定
		events: {
			'2010-7-7': {
				title: '今日はお休み'
			},
			'2009-11-15': {
				title: 'Googleで検索する日',
				url: 'http://google.co.jp/'
			},
			'2011-1-26': {
				title: ''
			},
			'2011-1-27': {
				title: ''
			},
			'2011-1-28': {
				title: ''
			},
			'2011-1-29': {
				title: ''
			},
			'2011-1-31': {
				title: ''
			},
			'2011-2-1': {
				title: ''
			},
			'2011-2-2': {
				title: ''
			}
			
		}
		
	});

});

