var calendarLang = {};
calendarLang.table = '' +
		'<div class="padding">' +
		'<div>' +
			'<table id="#{month}.#{year}" cellpadding="0" cellspacing="0">' +
				'<caption>#{monthName} #{year}</caption>' +
				'<thead>' +
					'<tr>' +
						'<th>Pn</th>' +
						'<th>Wt</th>' +
						'<th>Śr</th>' +
						'<th>Cz</th>' +
						'<th>Pt</th>' +
						'<th>So</th>' +
						'<th class="sunday">Nd</th>' +
					'</tr>' +
				'</thead>' +
				'<tbody>#{tbody}</tbody>' +
			'</table>' +
		'</div>' +
		'</div>';

calendarLang.months = new Array('Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec','Lipiec','Sierpień',
								'Wrzesień','Październik','Listopad','Grudzień');
								
calendarLang.selects = '' +
		'<fieldset>' +
			'<span>od:</span>' +
			'<select id="fromHour">#{hourOptionsFrom}</select>' +
			'<select id="fromDay">#{dayOptions}</select>' +
			'<select id="fromMonthYear">#{monthYearOptions}</select>' +
			'<span>do:</span>' +
			'<select id="toHour">#{hourOptionsTo}</select>' +
			'<select id="toDay">#{dayOptions}</select>' +
			'<select id="toMonthYear">#{monthYearOptions}</select>' +
		'</fieldset>';

calendarLang.days = new Array('dzień', 'dni', 'dni');
calendarLang.hours = new Array('godzina', 'godziny', 'godzin');