jQuery calendar 日本語設定

http://marcgrabanski.com/code/jquery-calendar/ 用の日本語設定
保存時の文字コードを気にしないために数値実体参照で記述。

/* Japanese initialisation for the jQuery calendar extension. */
/* Written by Milly. */
$(document).ready(function(){
	popUpCal.regional['ja'] = {
		clearText: '削除',
		closeText: '閉じる',
		prevText: '<前月',
		nextText: '次月>',
		currentText: '今日',
		dayNames: ['日','月','火','水','木','金','土'],
		monthNames: ['1月','2月','3月','4月','5月','6月',
		'7月','8月','9月','10月','11月','12月'],
		dateFormat: 'YMD/'};
	popUpCal.setDefaults(popUpCal.regional['ja']);
});