﻿/*
 * Nameday   ver  2.0.1  2003-11-02
 * Copyright (c) 2002-2003 by Michal Nazarewicz (mina86@tlen.pl)
 *
 * This script is free software; It is ditributed under terms of
 * GNU Lesser General Public License. Copy of the license can be found
 * at www.gnu.org/licenses/licenses.html#LGPL
 *
 * Visit www.projektcode.prv.pl for more..
 */


//
// Tuday's date :)
//
var nameday_date = new Date(),
	nameday_day = nameday_date.getDate(),
	nameday_month = nameday_date.getMonth()+1;



//
// Object representing names
//
function NamedayNames(names) {
	if (names instanceof Array) {
		this.names = names;
	} else {
		this.names = names.split('|');
	}
}

NamedayNames.prototype = {
	join: function(sep, last_sep, limit) {
		// Init args
		switch (arguments.length) {
			case  0: sep = null;
			case  1: last_sep = null;
			case  2: limit = null;
			case  3: break;
			default: return false;
		}


		// Get names
		var names = this.getNames(limit);


		// Join
		if (sep==null) {
			sep = ', ';
		}
		if (last_sep==null) {
			return names.join(sep);
		} else {
			var str = '';
			for (var i = 0; i<names.length; i++) {
				if (i==names.length-1) {
					str += last_sep;
				} else if (i) {
					str += sep;
				}
				str += names[i];
			}
			return str;
		}
	},


	//
	// Returns names as formated string
	//
	toString: function(before, after, sep, last_sep, limit) {
		// Init args
		switch (arguments.length) {
			case  0: before = null;
			case  1: after = null;
			case  2: sep = null;
			case  3: last_sep = null;
			case  4: limit = null;
			case  5: break;
			default: return false;
		}


		// Join names
		var str = this.join(sep, last_sep, limit);
		if (!str) {
			return false;
		}


		// Return
		return (before==null?'':before) + str + (after==null?'':after);
	},


	//
	// Returns names in array (maximum number of names in array is limit
	// or there's no maximum number if limit==0 || limit==null)
	//
	getNames: function(limit) {
		// Check args;
		if (arguments.length>1) {
			return false;
		}

		// All requested
		if (arguments.length==0 || limit==null || limit<1 ||
			limit>=this.names.length) {
			return this.names;

		// Limit requested
		} else {
			var arr = new Array(limit);
			for (var i = 0; i<limit; i++) {
				arr[i] = names[i];
			}
			return arr;
		}
	},


	//
	// Get name at index
	//
	get: function(index) {
		return this.names[index];
	},


	//
	// Get number of names
	//
	count: function() {
		return this.names.length;
	}
};



//
// Object representing set of names for each day of year
//
function NamedaySet(array) {
	this.array = array;
}

NamedaySet.prototype = {
	//
	// Returns NamedayNames object with names of people who have nameday
	// today or in the dth of m  If d or m is null or omitted, todays day
	// and/or month is taken.
	// Note: Months are indexed from 1 !!
	//
	getNames: function(d, m) {
		switch (arguments.length) {
			case  0: d = null;
			case  1: m = null;
			case  2: break;
			default: return false;
		}

		if (d==null) {
			d = nameday_day;
		}
		if (m==null) {
			m = nameday_month;
		}

		return new NamedayNames(this.array[m-1][d-1]);
	}
};




//
// Main object
//
function Nameday() {
	this.sets = new Array();
}


Nameday.prototype = {
	//
	// Returns specyfied set
	//
	getSet: function(lang) {
		if (arguments.length!=1) {
			return false;
		}
		return this.sets['' + lang];
	},


	//
	// Adds set
	//
	addSet: function(lang, set) {
		if (arguments.length!=2) {
			return false;
		}
		if (set instanceof NamedaySet) {
			this.sets['' + lang] = set;
		} else {
			this.sets['' + lang] = new NamedaySet(set);
		}
	}
};

var nameday = new Nameday();



/*
 * Nameday Polish Extension  ver  1.4.2  2003-11-19
 * Copyright (c) 2002-2003 by Michal Nazarewicz (mina86@tlen.pl)
 *
 * This script is free software; It is ditributed under terms of
 * GNU Lesser General Public License. Copy of the license can be found
 * at www.gnu.org/licenses/licenses.html#LGPL
 */


//
// Converts names
//
NamedayNames.prototype.pl_convert = function(method) {
	if (arguments.length!=1) {
		return false;
	}
	if (method==0) {
		return new NamedayNames(this.names);
	}
	if (method!=1) {
		return false;
	}

	var ret = new Array(), name = '';
	for (var i = 0; i<this.names.length; i++) {
		name = this.names[i];

		var len = name.length,
			last3 = name.substring(len-3),
			last2 = name.substring(len-2),
			vowel3 = "aeioóuy".indexOf(name.charAt(len-4))!=-1,
			vowel2 = "aeioóuy".indexOf(name.charAt(len-3))!=-1;

		if (last3=="ego") {
			if (name.substring(len-4, 1)=='l') {
				name = name.substring(0, len-3);
			} else {
				name = name.substring(0, len-3) + "y";
			}
		} else if (last3=="ńca") {
			name = name.substring(0, len-3) + "niec";
		} else if (last3=="tra") {
			name = name.substring(0,len-3) + (vowel3?"tr":"ter");
		} else if (last2=="ka" && !vowel2) {
			name =  name.substring(0,len-2) + "ek";
		} else if (last2=="ła" && !vowel2) {
			name = name.substring(0, len-2) + "ła";
		} else {
			name = name.substring(0, len-1) +
				(last2.substring(2,1)=='a'?'':'a');
		}

		ret[i] = name;
	}
	return new NamedayNames(ret);
};


//
// For backward compatibility
//
function Obraz(before, after, sep, last_sep, method) {
	switch (arguments.length) {
		case 0: before = null;
		case 1: after = null;
		case 2: sep = null;
		case 3: last_sep = null;
		case 3: method = null;
	}


	var names = PobierzImieniny(sep, last_sep, method);
	if (!names) {
		return false;
	}


	document.write("" + before + names + after);
	return true;
}

function PobierzImieniny(sep, last_sep, method) {
	switch (arguments.length) {
		case 0: sep = null;
		case 1: last_sep = null;
		case 2: method = null;
	}
	if (method==null) {
		method = 0;
	}

	var names;
	if (!(names = nameday.getSet('pl')) || !(names = names.getNames()) ||
		!(names = names.pl_convert(method))) {
		return false;
	}

	return names.toString('', '', sep, last_sep);
}



/*
 * Nameday Polish Names Database  v 2.1
 * Database taken from infoludek.pl/~slawek/imieniny.html
 * +some corrections
 */


nameday.addSet('pl', new Array(
	new Array(
		"<b>Uroczysto&#347;&#263; Obrzezania Pa&#324;skiego, I kl.</b><br><img src='http://tantumergo.comoj.com/files/obrzezanie.JPG' width='310' /><br>",
		"",
		"<b>Uroczysto&#347;&#263; Naj&#347;wi&#281;tszego Imienia Jezus, I kl.</b><br><img src='http://tantumergo.comoj.com/files/jesus.jpg' width='310' /><br>",
		"",
		"",
		"<b>Uroczysto&#347;&#263; Objawienia Pa&#324;skiego, I kl.</b><br><img src='http://tantumergo.comoj.com/files/objawienie.jpg' width='310' /><br>",
		"",
		"",
		"",
		"<b>Uroczysto&#347;&#263; &#346;wi&#281;tej Rodziny Jezusa, Maryi i J&#243;zefa, II kl.</b><br><img src='http://tantumergo.comoj.com/files/rodzina2.jpg' width='310' /><br>",
		"",
		"",
		"<b>Wspomnienie Chrztu Pa&#324;skiego, II kl.</b><br><img src='http://tantumergo.comoj.com/files/baptism.jpg' width='310' /><br>",
		"<b>&#346;w. Hilarego, Biskupa, Wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b><br><img src='http://tantumergo.comoj.com/files/hilary.jpg' width='200' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>Nawr&#243;cenie &#347;w. Paw&#322;a, Aposto&#322;a, III kl.</b><br><img src='http://tantumergo.comoj.com/files/st-paul.jpg' width='310' /><br>",
		"",
		"<b>&#346;w. Jana Chryzostoma, Biskupa, Wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b><br><img src='http://tantumergo.comoj.com/files/chryzostom.jpg' width='310' /><br>",
		"",
		"<b>&#346;w. Franciszka Salezego, Biskupa, Wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b><br><img src='http://tantumergo.comoj.com/files/salezy.jpg' width='310' /><br>",
		"",
		""
	),
	new Array(
		"",
		"<b>&#346;WI&#280;TO OCZYSZCZENIA NMP, II kl.</b><br><img src='http://tantumergo.comoj.com/files/oczyszczenie.jpg' width='310' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>&#346;w. Cyryla Aleksandryjskiego, Biskupa, Wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b><br><img src='http://tantumergo.comoj.com/files/cyryl.jpg' width='268' /><br>",
		"",
		"<b>&#346;wi&#281;to Objawienia si&#281; NMP Niepokalanej w Lourdes, III kl.</b><br><img src='http://tantumergo.comoj.com/files/poczecie.jpg' width='310' /><br>",
		"",
		"",
		"",
		"",
		"",
		"<b>&#346;RODA POPIELCOWA, I kl.</b><br><img src='http://tantumergo.comoj.com/files/popielec.jpg' width='310' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>&#346;w. Macieja, Aposto&#322;a, II kl.</b><br><img src='http://tantumergo.comoj.com/files/maciej.jpg' width='250' /><br>",
		"",
		"",
		"",
		"",
		""
	),
	new Array(
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>Święto św. Józefa, oblubieńca NMP, wyznawcy, Opiekuna Kościoła Powszechnego, I kl.</b><br><img src='http://tantumergo.comoj.com/files/jozef_obl.jpg' width='310' /><br>",
		"",
		"",
		"",
		"",
		"",
		"<b>Święto Zwiastowania NMP, I kl.</b><br><img src='http://tantumergo.comoj.com/files/zwiastowania.jpg' width='310' /><br>",
		"",
		"",
		"<b>Niedziela Palmowa, I kl.</b><br><img src='http://tantumergo.comoj.com/files/palmowa.jpg' width='310' /><br>",
		"",
		"",
		""
	),
	new Array(
		"<b>WIELKI CZWARTEK, I kl.</b><br><img src='http://tantumergo.comoj.com/files/wieczerza.jpg' width='310' /><br>",
		"<b>WIELKI PI&#260;TEK, I kl.</b><br><img src='http://tantumergo.comoj.com/files/ukrzyzowanie.jpg' width='310' /><br>",
		"<b>WIELKA SOBOTA, I kl.</b><br><img src='http://tantumergo.comoj.com/files/zlozenie.jpg' width='310' /><br>",
		"<b>UROCZYSTO&#346;&#262; ZMARTWYCHWSTANIA PA&#323;SKIEGO, I kl.</b><br><img src='http://tantumergo.comoj.com/files/zmartwychwstanie.jpg' width='310' /><br>",
		"<b>PONIEDZIAŁEK WIELKANOCNY, I kl.</b><br><img src='http://tantumergo.comoj.com/files/emaus.jpg' width='310' /><br>",
		"",
		"",
		"",
		"",
		"",
		"<b>Biała Niedziela, I kl.</b><br><img src='http://tantumergo.comoj.com/files/tomasz.jpg' width='310' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>&#346;w. Anzelma, biskupa, wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b><br><img src='http://tantumergo.comoj.com/files/anselm.jpg' width='200' /><br>",
		"",
		"<b>&#346;w. Wojciecha, biskupa i m&#281;czennika, g&#322;&#243;wnego Patrona Polski, I kl.</b><br><img src='http://tantumergo.comoj.com/files/wojciech.jpg' width='259' /><br>",
		"",
		"<b>&#346;w. Marka, Ewangelisty, wspomnienie</b><br><img src='http://tantumergo.comoj.com/files/marek.jpg' width='310' /><br>",
		"",
		"<b>&#346;w. Piotra Kanizjusza, wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b><br><img src='http://tantumergo.comoj.com/files/kanizjusz.jpg' width='294' /><br>",
		"",
		"",
		""
	),
	new Array(
		"<b>&#346;w. J&#243;zefa Rzemie&#347;lnika, Oblubie&#324;ca N.M.P., I kl.</b><br><img src='http://tantumergo.com.pl/files/rzemieslnik.jpg' width='310' /><br>",
		"",
		"<b>Naj&#347;w. Maryi Panny Kr&#243;lowej Polski, I kl.</b><br><img src='http://tantumergo.com.pl/files/black_madonna.jpg' width='255' /><br>",
		"",
		"<b>&#346;w. Piusa V, Papie&#380;a i wyznawcy, III kl.</b><br><img src='http://tantumergo.com.pl/files/pius_v.jpg' width='310' /><br>",
		"",
		"",
		"<b>&#347;w. Stanis&#322;awa, biskupa i m&#281;czennika, g&#322;&#243;wnego Patrona Polski, I kl.</b><br><img src='http://tantumergo.com.pl/files/st_stanislaus.jpg' width='470' /><br>",
		"",
		"",
		"<b>&#346;&#346;. Filipa i Jakóba Aposto&#322;&#243;w, II kl.</b><br><img src='http://tantumergo.com.pl/files/filip_jakob.jpg' width='310' /><br>",
		"",
		"<b>Wniebowst&#261;pienie Pa&#324;skie, I kl.</b><br><img src='http://tantumergo.com.pl/files/wniebowstapienie.jpg' width='470' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>Niedziela Zes&#322;ania Ducha &#346;wi&#281;tego, I kl.</b><br><img src='http://tantumergo.com.pl/files/duch.jpg' width='427' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>&#346;WI&#280;TO TR&#211;JCY PRZENAJ&#346;WI&#280;TSZEJ, I kl.</b><br><img src='http://tantumergo.com.pl/files/trojca.jpg' width='312' /><br>",
		"<b>Najśw. Maryi Panny Królowej, II kl.</b><br><img src='http://tantumergo.com.pl/files/regina1.jpg' width='470' /><br>"
	),
	new Array(
		"",
		"",
		"<b>NAJŚWIĘTSZEGO CIAŁA CHRYSTUSA (BOŻE CIAŁO), I kl.</b><br><img src='http://tantumergo.com.pl/files/boze_cialo.jpg' width='476' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>NAJŚWIĘTSZEGO SERCA PANA JEZUSA, I kl.</b><br><img src='http://tantumergo.com.pl/files/serce.gif' width='298' /><br>",
		"",
		"",
		"<b>Św. Bazylego Wielkiego, Biskupa, Wyznawcy i Doktora Kościoła, III kl.</b><br><img src='http://tantumergo.com.pl/files/bazyli.jpg' width='476' /><br>",
		"",
		"",
		"",
		"<b>Św. Efrema, Diakona, Wyznawcy i Doktora Kościoła, III kl.</b><br><img src='http://tantumergo.com.pl/files/efrem.jpg' width='476' /><br>",
		"",
		"",
		"",
		"",
		"",
		"<b>Narodzenie &#347;w. Jana Chrzciciela, I kl.</b><br><img src='http://tantumergo.com.pl/files/joannes_baptista.jpg' width='238' />",
		"",
		"",
		"",
		"",
		"<b>Uroczysto&#347;&#263; &#347;&#347;. Piotra i Paw&#322;a, Aposto&#322;&#243;w, I kl.</b></span><br><img src='http://tantumergo.com.pl/files/sts_peter_and_paul.jpg' width='476' />",
		"<b>Uroczysto&#347;&#263; &#347;&#347;. Piotra i Paw&#322;a, Aposto&#322;&#243;w, I kl.</b></span><br><img src='http://tantumergo.com.pl/files/st_paul.jpg' width='338' />"
	),
	new Array(
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Najdro&#380;szej Krwi Pana Jezusa</b></span><br><img src='./files/e.jpg' width='400' />",
		"<span style='font-size:125%;'><b>Nawiedzenie Naj&#347;wi&#281;tszej Maryi Panny</b></span><br><img src='./files/nawiedzenie.jpg' width='400' />",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Naj&#347;wi&#281;tszej Marji Panny z G&#243;ry Karmel (M.B. Szkaplerznej)</b></span><br><img src='./files/szkaplerzna.jpg' width='400' />",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>&#346;w. Jak&#243;ba, Aposto&#322;a</b></span><br><img src='./files/jakub_starszy.jpg' width='400' />",
		"",
		"",
		"",
		"",
		"",
		""
	),
	new Array(
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Przemienienia Pa&#324;skiego, II kl.</b></span><br><img src='./files/przemienienie.jpg' width='500' />",
		"",
		"<span style='font-size:125%;'><b>&#347;w. Jana Marji Vianneya, wyznawcy, III kl.</b></span><br><img src='./files/vianney.jpg' width='231' />",
		"",
		"<span style='font-size:125%;'><b>&#347;w. Wawrzy&#324;ca, m&#281;czennika, II kl.</b></span><br><img src='./files/wawrzyniec.jpg' width='200' />",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Wniebowzi&#281;cia N.M.Panny, I kl.</b></span><br><img src='./files/wniebowziecie.jpg' height='750' />",
		"",
		"<span style='font-size:125%;'><b>&#347;w. Jacka Odrow&#261;&#380;a, I kl.</b></span><br>(dla diecezji Metropolii Katowickiej)<br><img src='./files/sw_jacek.jpg' width='274' />",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Niepokalanego Serca N.M.Panny, II kl.</b></span><br><img src='./files/niepokalane.gif' width='236' /><br>",
		"",
		"<span style='font-size:125%;'><b>&#347;w. Bart&#322;omieja, Aposto&#322;a, II kl.</b></span><br><img src='./files/bartlomiej.jpg' width='500' /><br>",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; N.M.Panny Cz&#281;stochowskiej, I kl.</b></span><br><img src='./files/black_madonna.jpg' width='255' /><br>",
		"",
		"<span style='font-size:125%;'><b>&#347;w. Augustyna, biskupa, wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b></span><br><img src='./files/augustyn.jpg' height='750' /><br>",
		"<span style='font-size:125%;'><b>&#346;ci&#281;cie &#347;w. Jana Chrzciciela, III kl.</b></span><br><img src='./files/sciecie.jpg' width='600' /><br>",
		"",
		""
	),
	new Array(
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Narodzenia N.M.Panny, II kl.</b></span><br><img src='./files/narodzenie.jpg' width='357' /><br>",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Naj&#347;wi&#281;tszego Imienia Marji, II kl.</b></span><br><img src='./files/maria.jpg' width='143' /><br>",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Podwy&#380;szenia Krzy&#380;a &#346;wi&#281;tego, II kl.</b></span><br><img src='./files/untitled.bmp' width='250' /><br>",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Siedmiu Bole&#347;ci N.M.Panny, II kl.</b></span><br><img src='./files/bolesci.jpg' width='270' /><br>",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>&#346;w. Mateusza, Aposto&#322;a i Ewangelisty, II kl.</b></span><br><img src='./files/mateusz.jpg' width='270' /><br>",
		"",
		"",
		"<span style='font-size:125%;'><b>N.M.Panny od Wykupu Je&#324;c&#243;w, wspomnienie</b></span><br><img src='./files/jency.jpg' width='250' /><br>",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; &#347;w. Micha&#322;a Archanio&#322;a, I kl.</b></span><br><img src='./files/michal.jpg' width='400' /><br>",
		"<span style='font-size:125%;'><b>&#346;w. Hieronima, kap&#322;ana, wyznawcy i Doktora Ko&#347;cio&#322;a, III kl.</b></span><br><img src='./files/hieronim.jpg' width='640' /><br>"
	),
	new Array(
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; N.M.Panny R&#243;&#380;a&#324;cowej, II kl.</b></span><br><img src='./files/rozaniec.jpg' width='320' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>(dla &#346;l&#261;ska) &#347;w. Jadwigi, wdowy, III kl.</b></span><br><img src='./files/jadwiga2.jpg' width='300' /><br>",
		"<span style='font-size:125%;'><b>&#346;w. Jadwigi, wdowy, III kl.</b></span><br><img src='./files/jadwiga2.jpg' width='300' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>&#346;w. Rafa&#322;a Archanio&#322;a, III kl.</b></span><br><img src='./files/rafal.jpg' height='500' /><br>",
		"<span style='font-size:125%;'><b>JEZUSA CHRYSTUSA KR&#211;LA, I kl.</b></span><br><img src='./files/chrystuskrol1.jpg' height='500' /><br>",
		"",
		"",
		"<span style='font-size:125%;'><b>&#346;&#346;. Szymona i Judy Tadeusza, Aposto&#322;&#243;w, II kl.</b></span><br><img src='./files/szymon_juda.jpg' width='400' /><br>",
		"",
		"",
		""
	),
	new Array(
		"<span style='font-size:125%;'><b>Uroczysto&#347;&#263; Wszystkich &#346;wi&#281;tych, I kl.</b></span><br><img src='./files/untitled.bmp' width='300' /><br>",
		"<span style='font-size:125%;'><b>Dzie&#324; Zaduszny, I kl.</b></span><br><img src='./files/dz.jpg' width='333' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>&#346;w. Stanis&#322;awa Kostki, wyznawcy, Patrona Polski, II kl.</b></span><br><img src='./files/stanislaw.jpg' width='300' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>Ofiarowanie N.M.Panny, III kl.</b></span><br><img src='./files/ofiar_nmp.jpg' width='300' /><br>",
		"",
		"",
		"<span style='font-size:125%;'><b>&#346;w. Jana od Krzy&#380;a, wyznawcy i Doktora Ko&#346;cio&#322;a, III kl.</b></span><br><img src='./files/jan_krzyz.jpg' width='280' /><br>",
		"",
		"",
		"",
		"",
		"",
		"<span style='font-size:125%;'><b>&#346;w. Andrzeja, aposto&#322;a, II kl.</b></span><br><img src='./files/andrzej.jpg' width='247' /><br>"
	),
	new Array(
		"",
		"",
		"",
		"<b>&#346;w. Piotra Chryzologa, biskupa, wyznawcy i Doktora Ko&#346;cio&#322;a, III kl.</b><br><img src='./files/sw-piotr-chryzolog.jpg' height='400' /><br>",
		"",
		"",
		"<b>&#346;w. Ambro&#380;ego, biskupa i wyznawcy i Doktora Ko&#346;cio&#322;a, III kl.</b><br><img src='./files/ambrozy.jpg' width='280' /><br>",
		"<b>Niepokalane Pocz&#281;cie N.M.Panny, I kl.</b><br><img src='./files/poczecie.jpg' width='310' /><br>",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"<b>&#346;w. Tomasza, aposto&#322;a, II kl.</b><br><img src='./files/tomasz.jpg' width='310' /><br>",
		"",
		"",
		"",
		"<b>Uroczysto&#347;&#263; Bo&#380;ego Narodzenia, I kl.</b><br><img src='./files/boze_narodzenie.jpg' width='310' /><br>",
		"<b>&#346;w. Szczepana, pierwszego m&#281;czennika, II kl.</b><br><img src='./files/szczepan.jpg' width='310' /><br>",
		"<b>&#346;w. Jana, aposto&#322;a i ewangelisty, II kl.</b><br><img src='./files/sw_jan.jpg' width='310' /><br>",
		"<b>&#346;wi&#281;tych M&#322;odziank&#243;w, m&#281;czennik&#243;w, II kl.</b><br><img src='./files/mlodzianki.jpg' width='310' /><br>",
		"",
		"",
		""
	)
));
