/*
 * 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 NamedaySigla(sigla) {
	if (sigla instanceof Array) {
		this.sigla = sigla;
	} else {
		this.sigla = sigla.split('|');
	}
}

NamedaySigla.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 sigla = this.getSigla(limit);


		// Join
		if (sep==null) {
			sep = ', ';
		}
		if (last_sep==null) {
			return sigla.join(sep);
		} else {
			var str = '';
			for (var i = 0; i<sigla.length; i++) {
				if (i==sigla.length-1) {
					str += last_sep;
				} else if (i) {
					str += sep;
				}
				str += sigla[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)
	//
	getSigla: function(limit) {
		// Check args;
		if (arguments.length>1) {
			return false;
		}

		// All requested
		if (arguments.length==0 || limit==null || limit<1 ||
			limit>=this.sigla.length) {
			return this.sigla;

		// Limit requested
		} else {
			var arr = new Array(limit);
			for (var i = 0; i<limit; i++) {
				arr[i] = sigla[i];
			}
			return arr;
		}
	},


	//
	// Get name at index
	//
	get: function(index) {
		return this.sigla[index];
	},


	//
	// Get number of names
	//
	count: function() {
		return this.sigla.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 !!
	//
	getSigla: 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 NamedaySigla(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
//
NamedaySigla.prototype.pl_convert = function(method) {
	if (arguments.length!=1) {
		return false;
	}
	if (method==0) {
		return new NamedaySigla(this.sigla);
	}
	if (method!=1) {
		return false;
	}

	var ret = new Array(), name = '';
	for (var i = 0; i<this.sigla.length; i++) {
		name = this.sigla[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 NamedaySigla(ret);
};


//
// For backward compatibility
//
function WypiszSigla(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 sigla = PobierzSigla(sep, last_sep, method);
	if (!sigla) {
		return false;
	}


	document.write("" + before + sigla + after);
	return true;
}

function PobierzSigla(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 sigla;
	if (!(sigla = nameday.getSet('pl')) || !(sigla = sigla.getSigla()) ||
		!(sigla = sigla.pl_convert(method))) {
		return false;
	}

	return sigla.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(
		"Maslawa|Mieczyslawa|Mieszka",
		"Bazylego|Makarego|Narcyzy",
		"Arlety|Danuty|Lucjana",
		"Anieli|Elzbiety|Tytusa",
		"Edwarda|Hanny|Szymona",
		"Kacpra|Melchiora|Baltazara",
		"Juliana|Lucjana|Walentyny",
		"Artura|Rajmunda|Seweryny",
		"Adriana|Alicji|Teresy",
		"Ady|Jana|Wilhelma",
		"Feliksa|Honoraty|Marty",
		"Bernarda|Czeslawy|Grety",
		"Bogumila|Bogumily|Weroniki",
		"Feliksa|Hilarego|Martyny",
		"Arnolda|Dory|Pawla",
		"Marcelego|Walerii|Wlodzimierza",
		"Antoniego|Henryki|Mariana",
		"Beatrycze|Malgorzaty|Piotra",
		"Erwiny|Henryka|Mariusza",
		"Fabioli|Mily|Sebastiana",
		"Agnieszki|Jaroslawa|Nory",
		"Dominiki|Mateusza|Wincentego",
		"Fernandy|Jana|Rajmundy",
		"Felicji|Roberta|Slawy",
		"Milosza|Pawla|Tatiany",
		"Lutoslawa|Normy|Pauliny",
		"Mk 20,3-9|Ps 39,9|J 2,9|Mt 2, 7-8",
		"Hbr 10,11-18|Ps 110,1-4|Mk 4,1-20",
		"<a href=http://mateusz.pl/czytania/2009/20090129.htm>Hbr 10,19-25| Ps 24,1-6| Ps 119,105| Mk 4,21-25</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090130.htm>Hbr 10,32-39| Ps 37,3-6.23-24.39-40| Mt 11,25| Mk 4,26-34",
		"<a href=http://mateusz.pl/czytania/2009/20090131.htm>Hbr 11,1-2.8-19| Lk 1,69-72.74-75| Hbr 4,12| Mk 4,35-41",
	),
	new Array(
		"<a href=http://mateusz.pl/czytania/2009/20090201.htm>Pwt 18,15-20| Ps 95,1-2.6-9| 1 Kor 7,32-35| Mt 4,16| Mk 1,21-28",
		"<a href=http://mateusz.pl/czytania/2009/20090202.htm>Ml 3,1-4 (Hbr 2,14-18)| Ps 24,7-10| Lk 2,32|Lk 2,22-40 (Lk 2,22-32)",
		"<a href=http://mateusz.pl/czytania/2009/20090203.htm>Hbr 12,1-4| Ps 22,26-28.30-32|Mt 8,17| Mk 5,21-43",
		"<a href=http://mateusz.pl/czytania/2009/20090204.htm>Hbr 12,4-7.11-15| Ps 103,1-2.13-14.17-18| Dz 16,14b| Mk 6,1-6",
		"<a href=http://mateusz.pl/czytania/2009/20090205.htm>Hbr 12,18-19.21-24| Ps 48,2-4.9-11| Mk 1,15| Mk 6,7-13",
		"<a href=http://mateusz.pl/czytania/2009/20090206.htm>Hbr 13,1-8| Ps 27,1.3.5.8-9| 2 Tm 1,10b| Mk 6,14-29",
		"<a href=http://mateusz.pl/czytania/2009/20090207.htm>Hbr 13,15-17.20-21| Ps 23,1-6| J 10,27| Mk 6,30-34",
		"<a href=http://mateusz.pl/czytania/2009/20090208.htm>Job 7,1-4.6-7| 1 Kor 9,16-19.22-23| Mk 1,29-39",
		"<a href=http://mateusz.pl/czytania/2009/20090209.htm>Rdz 1,1-19|Mk 6,53-56",
		"<a href=http://mateusz.pl/czytania/2009/20090210.htm>Rdz 1,20-2,4a| Mk 7,1-13",
		"<a href=http://mateusz.pl/czytania/2009/20090211.htm>Rdz 2,4b-9.15-17 Mk 7,14-23",
		"<a href=http://mateusz.pl/czytania/2009/20090212.htm>Rdz 2,18-25| Mk 7,24-30",
	        "<a href=http://mateusz.pl/czytania/2009/20090213.htm>Rdz 3,1-8| Mk 7,31-37",

		"<a href=http://mateusz.pl/czytania/2009/20090214.htm>Dz 13,46-49| Lk 10,1-9 (tom VI)",
		"<a href=http://mateusz.pl/czytania/2009/20090215.htm>Kpl 13,1-2.45-46|1 Kor 10,31-11,1| Mk 1,40-45",
		"<a href=http://mateusz.pl/czytania/2009/20090216.htm>Rdz 4,1-15.25| Mk 8,11-13",
		"<a href=http://mateusz.pl/czytania/2009/20090217.htm>Rdz 6,5-8;7,1-5.10| Mk 8,14-21",
		"<a href=http://mateusz.pl/czytania/2009/20090218.htm>Rdz 8,6-13.20-22| Mk 8,22-26",
		"<a href=http://mateusz.pl/czytania/2009/20090219.htm>Rdz 9,1-13| Mk 8,27-33",
		"<a href=http://mateusz.pl/czytania/2009/20090220.htm>Rdz 11,1-9| Mk 8,34-9,1",
		"<a href=http://mateusz.pl/czytania/2009/20090221.htm>Hbr 11,1-7| Mk 9,2-13",
		"<a href=http://mateusz.pl/czytania/2009/20090222.htm>Iz 43,18-19.21-22.24b-25| 2 Kor 1,18-22| Mk 2,1-12",
		"<a href=http://mateusz.pl/czytania/2009/20090223.htm>Syr 1,1-10| Mk 9,14-29 (Ap 2,8-11|J 15,18-21 - tom VI)",
		"<a href=http://mateusz.pl/czytania/2009/20090224.htm>Syr 2,1-11| Mk 9,30-37",
		"<a href=http://mateusz.pl/czytania/2009/20090225.htm>Jl 2,12-18| 2 Kor 5,20-6,3| Mt 6,1-6.16-18",
		"<a href=http://mateusz.pl/czytania/2009/20090226.htm>Pwt 30,15-20| Lk 9,22-25",
		"<a href=http://mateusz.pl/czytania/2009/20090227.htm>Iz 58,1-9| Mt 9,14-15,"
                "<a href=http://mateusz.pl/czytania/2009/20090228.htm>Iz 58,9b-14| Lk 5,27-32,"
        ),
	new Array(
		"<a href=http://mateusz.pl/czytania/2009/20090301.htm>Rdz 9,8-15| 1 P 3,18-22| Mk 1,12-15",
		"<a href=http://mateusz.pl/czytania/2009/20090302.htm>Kpl 19,1-2.11-18| Mt 25,31-46",
		"<a href=http://mateusz.pl/czytania/2009/20090303.htm>Iz 55,10-11| Mt 6,7-15",
		"<a href=http://mateusz.pl/czytania/2009/20090304.htm>Syr 51,13-20 (Flp 3,8-14)| Lk 12,35-40 (tom VI)",
		"<a href=http://mateusz.pl/czytania/2009/20090305.htm>Est (Wlg) 14,1.3-5.12-14| Mt 7,7-12",
		"<a href=http://mateusz.pl/czytania/2009/20090306.htm>Ez 18,21-28| Mt 5,20-26",
		"<a href=http://mateusz.pl/czytania/2009/20090307.htm>Pwt 26,16-19| Mt 5, 43-48",
		"<a href=http://mateusz.pl/czytania/2009/20090308.htm>Rdz 22,1-2.9-13.15-18| Rz 8,31b-34|Mk 9,2-10",
		"<a href=http://mateusz.pl/czytania/2009/20090309.htm>Dn 9,4b-10|Lk 6,36-38",
		"<a href=http://mateusz.pl/czytania/2009/20090310.htm>Iz 1,10.16-20| Mt 23,1-12",
		"<a href=http://mateusz.pl/czytania/2009/20090311.htm>Jr 18,18-20|Mt 20,17-28",
		"<a href=http://mateusz.pl/czytania/2009/20090312.htm>Jr 17,5-10| Lk 16,19-31",
		"<a href=http://mateusz.pl/czytania/2009/20090313.htm>Rdz 37,3-4.12-13a.17b-28| Mt 21,33-43.45-46",
		"<a href=http://mateusz.pl/czytania/2009/20090314.htm>Mi 7,14-15.18-20| Lk 15,1-3.11-32",
		"<a href=http://mateusz.pl/czytania/2009/20090315.htm>Wj 20,1-17 (Wj 20,1-3.7-8.12-17)| 1 Kor 1,22-25; J 2,13-25",
		"<a href=http://mateusz.pl/czytania/2009/20090316.htm>2 Krl 5,1-15a| Lk 4,24-30",
		"<a href=http://mateusz.pl/czytania/2009/20090317.htm>Dn 3,25.34-43| Mt 18,21-35",
		"<a href=http://mateusz.pl/czytania/2009/20090318.htm>Pwt 4,1.5-9|Mt 5, 17-19",
		"<a href=http://mateusz.pl/czytania/2009/20090319.htm>2 Sm 7,4-5a.12-14a.16| Rz 4,13.16-18.22|Mt 1,16.18-21.24a (Lk 2,41-51a) (tom VI)",
		"<a href=http://mateusz.pl/czytania/2009/20090320.htm>Oz 14,2-10| Mk 12,28b-34",
		"<a href=http://mateusz.pl/czytania/2009/20090321.htm>Oz 6,1-6| Lk 18,9-14",
		"<a href=http://mateusz.pl/czytania/2009/20090323.htm>Iz 65,17-21|J 4,43-54",
		"<a href=http://mateusz.pl/czytania/2009/20090324.htm>Ez 47,1-9.12| J 5,1-3a.5-16",
		"<a href=http://mateusz.pl/czytania/2009/20090325.htm>Iz 7,10-14| Hbr 10,4-10| Lk 1,26-38  (tom VI)",
		"<a href=http://mateusz.pl/czytania/2009/20090326.htm>Wj 32,7-14|J 5,31-47",
		"<a href=http://mateusz.pl/czytania/2009/20090327.htm>Mdr 2,1a.12-22| J 7,1-2.10.25-30",
		"<a href=http://mateusz.pl/czytania/2009/20090328.htm>Jr 11,18-20| J 7,40-53",
		"<a href=http://mateusz.pl/czytania/2009/20090329.htm>Jr 31,31-34| Hbr 5,7-9| J 12,20-33",
		"<a href=http://mateusz.pl/czytania/2009/20090330.htm>Jr Dn 13,41-62| J 8,1-11",
		"<a href=http://mateusz.pl/czytania/2009/20090331.htm>Dn 13,41-62| J 8,1-11",
		"<a href=http://mateusz.pl/czytania/2009/20090320.htm>Lb 21,4-9| J 8,21-30"
	),
	new Array(
		"Dn 3,14-20.91-92.95| J 8,31-42",
		"Rdz 17,3-9| J 8,51-59",
		"Jr 20,10-13| J 10,31-42",
		"Ez 37,21-28|J 11,45-57",
		"Mk 11,1-10 (J 12,12-16)| po procesji: Iz 50,4-7| Flp 2,6-11| Mk 14,1-15,47 (Mk 15,1-39)
		"Iz 42,1-7| J 12,1-11",
		"Iz 49,1-6| J 13,21-33.36-38",
		"Iz 50,4-9a| Mt 26,14-25",
		"Iz 61,1-3a.6a.8b-9| Ap 1,4-8| Lk 4,16-21

 

Czyt.: Wj 12,1-8.11-14; 1 Kor 11,23-26; J 13,1-15|",


		"Iz 52,13-53,12| Hbr 4,14-16|5,7-9| J 18,1-19,42",
		"Wj 14,15-15,1 i przynajmniej dwa inne ze Starego Testamentu, Rz 6,3-11| Mk 16,1-8",
		"Dz 10,34a.37-43| Kol 3,1-4 (1 Kor 5,6b-8)| obowiazkowa sekwencja| J 20,1-9 (Mk 16,1-8)| w czasie Mszy sw. wieczornej mozna odczytac Ewangelie o uczniach idacych do Emaus - Lk 24,13-35",
		"Dz 2,14.22-32| sekwencja dow.| Mt 28,8-15",
		"Dz 2,36-41| sekwencja dow.| J 20,11-18",
		"Dz 3,1-10| sekwencja dow.|k 24,35-48",
		"Dz 4,1-12| sekwencja dow.| J 21,1-14",
		"Dz 4,13-21| sekwencja dow.| Mk 16,9-15",
		" Dz 4,32-35| 1 J 5,1-6| J 20,19-31",
		"Dz 4,23-31| J 3,1-8",
		"Dz 4,32-37| J 3,7-15",
            	"Dz 5, 17-26| J 3,16-21",
		"Dz 5,34-42| J 6,1-15",
		"1 P 5,5b-14| Mk 16,15-20 (tom VI)",
		"Dz 3,13-15.17-19| 1 J 2,1-5a| Lk 24,35-48",
		"Dz 6,8-15| J 6,22-29",
		"Dz Dz 7,51-59| 8,1| J 6,30-35",
		"Dz 7,51-59|8,1|J 6,30-35",
		"1 J 1,5-2,2| Mt 11,25-30 (tom VI)",
		"Dz 8,26-40| J 6,44-51"
	
	new Array(
		"Rdz 1,26-2,3 (Kol 3,14-15.17.23-24)| Mt 13,54-58  (tom VI)",
		"Dz 9,31-42| J 6,55.60-69 (1 J 5,1-5|Mt 10,22-25a - tom VI)",
		"Dz 4,8-12| 1 J 3,1-2|J 10,11-18",
		"Ap 11,19a|12,1.3-6a.10ab| Kol 1,12-16| J 19,25-27 (tom VI)",
		"Dz 11,19-26|J 10,22-30",
		"1 Kor 15,1-8| J 14,6-14 (tom VI)",
		"Dz 13,13-25|J 13,16-20",
		"Dz 20,17-18a.28-32.36| Rz 8,31b-39|J 10,11-16 (tom VI)",
		"Dz 13,44-52|J 14,7-14",
		"Dz 9,26-31| J 3,18-24|J 15,1-8",
		"Dz 14,5-18| J 14,21-26",
		"Dz 14,19-28| 14,27-31a",
		"Dz 15,1-6|J 15,1-8",
		" Dz 1,15-17.20-26| J 15,9-17 (tom VI),"
		"Dz 15,22-31|J 15,12-17",
		"Ap 12,10-12a (1 Kor 1,10-13.17-18)|J 17,20-26  (tom VI)",
		"Dz 10,25-26.34-35.44-48|1 J 4,7-10| J 15,9-17",
		" Dz 16,11-15| J 15,26-16,4a",
		"Dz 16,22-34|J 16,5-11",
		"Dz 17,15.22-18,1| J 16,12-15",
		"Dz 18,1-8|J 16,16-20",
		"Dz 18,9-18|J 16,20-23a",
		"Dz 18,23-28| J 16,23b-28",
		"Dz 1,1-11| Ef 1,17-23|Mk 16,15-20",
		"Dz 19,1-8|J 16,29-33",
		"Dz 20,17-27|J 17,1-11a",
		"Dz 20,28-38| J 17,11b-19",
		"Dz 22,30|23,6-11| J 17,20-26",
		"Dz 25,13-21| J 21,15-19",
		"Dz 28,16-20.30-31| J 21,20-25",
		"Dz 28,16-20.30-31| J 21,20-25

Msza w wigilie uroczystosci Zeslania Ducha Sw. 

Czyt.: Rdz 11,1-9 (Wj 19,3-8a.16-20b) (Ez 37,1-14) (Jl 3,1-5); Rz 8,22-27; J 7,37-39
"
	),
	new Array(
		"Rdz 3,9-15.20 (Dz 1,12-14)| J 2,1-11 (J 19,25-27) (tom VI, s. 129)",
		"Tb 2,10-23| Mk 12,13-17",
		"Tb 3,1-11.24-25|Mk 12,18-27",
		"Tb 6,10-11a|7,1.9-17;8,4-10| Mk 12,28b-34",
		"Tb 11,5-17| Mk 12,35-37",
		"Tb 12,1.5-15.20| Mk 12,38-44",
		"Pwt 4,32-34.39-40| Rz 8,14-17| Mt 28,16-20  (tom III, s. 379)",
		"2 Kor 1,1-7| Mt 5,1-12",
		"2 Kor 1,18-22| Mt 5,13-16",
		"2 Kor 3,4-11| Mt 5,17-19 (1 Kor 12,31-13,13|Mt 16,24-27 - tom VI)",
		"Wj 24,3-8; Hbr 9,11-15| Mk 14,12-16.22-26  (tom III, s. 388)",
		"2 Kor 4,7-15| Mt 5,27-32",
		"2 Kor 5,14-21| Mt 5,33-37",
		"Ez 17,22-24| 2 Kor 5,6-10| Mk 4,26-34",
		"2 Kor 6,1-10|Mt 5,38-42",
	        " 2 Kor 8,1-9| Mt 5,43-48",
		"2 Kor 9,6-11| Mt 6,1-6.16-18 | Iz 58,6-11| 1 Kor 1,26-31| Mk 10,17-30|Dz 4,8-12| Lk 9,57-62 - tom VI)",
		"2 Kor 11,1-11| Mt 6,7-15",
		"Oz 11,1.3-4.8c-9| Ef 3,8-12.14-19| J 19,31-37 (tom III, s. 397)",
		"Iz 61,9-11| Lk 2,41-51 (tom VI, s.168)",
		"Job 38,1.8-11| 2 Kor 5,14-17|Mk 4,35-41",
		"Rdz 12,1-9| Mt 7,1-5",
		"Rdz 13,2.5-18| Mt 7,6.12-14

Msza w wigilie urocz. narodzenia sw. Jana Chrzciciela

Czyt.: Jr 1,4-10| 1P 1,8-12| Lk 1,5-17 (tom VI) 
",
		"Iz 49,1-6| Dz 13,22-26| Lk 1,57-66.80 (tom VI)",
		"Rdz 16,1-12.15-16 (Rdz 16,6b-12.15-16)| Mt 7,21-29",
		"Rdz Rdz 17,1.9-10.15-22| Mt 8,1-4",
		"Rdz 18,1-15| Mt 8,5-17,
		" Mdr 1,13-15|2,23-24| 2 Kor 8,7.9.13-15| Mk 5,21-43 (Mk 5,21-24.35b-43)

 

Msza w wigilie urocz. swietych Apostolów Piotra i Pawla 

Czyt.: Dz 3,1-10| Ga 1,11-20| J 21,15-19 (tom VI) 


		"Dz 12,1-11| 2 Tm 4,6-9.17-18| Mt 16,13-19 (tom VI)",
		"Rdz 19,15-29| Mt 8,23-27",
	
	new Array(
		"<a href=http://mateusz.pl/czytania/2009/20090701.htm>Rdz 21,5.8-20| Mt 8,28-34</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090702.htm>Rdz 22,1-19| Mt 9,1-8</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090703.htm>Ef 2,19-22| J 20,24-29 (tom VI)</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090704.htm>Rdz 27,1-5.15-29| Mt 9,14-17</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090705.htm>Ez 2,2-5| 2 Kor 12,7-10| Mk 6,1-6</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090706.htm>Rdz 28,10-22a| Mt 9,18-26 (Iz 58,6-10| J 4,34-38 - tom VI)</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090707.htm>Rdz 32,23-33| Mt 9,32-37</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090708.htm>Rdz 41,55-57|42,5-7.14-15a.17-24a| Mt 10,1-7</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090709.htm>Rdz 44,18-21.23b-29|45,1-5|Mt 10,7-15</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090711.htm>Rdz 46,1-7.28-30| Mt 10,16-23</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090712.htm>Prz 2,1-9 (Dz 4,32-35)| Mt 19,27-29  (tom VI)</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090713.htm>Am 7,12-15| Ef 1,3-14 (Ef 1,3-10)| Mk 6,7-13</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090714.htm>Wj 1,8-14.22| Mt 10,34-11,1 (Syr 2,7-11| Mt 6,1.5-8 - tom VI)</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090715.htm>Wj 2,1-15a| Mt 11,20-24</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090716.htm>Wj 3,1-6.9-12| Mt 11,25-27</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090717.htm>Wj 3,13-20| Mt 11,28-30</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090718.htm>Wj 11,10-12,1| Mt 12,14-21</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090719.htm>Jr 23,1-6| Ef 2,13-18| Mk 6,30-34</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090720.htm>Wj 14,5-9a.10-18| Mt 12,38-42</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090721.htm>Wj 14,21-15,1| Mt 12,46-50</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090722.htm>Wj 16,1-5.9-15| Mt 13,1-9 (Pnp 8,6-7| 2 Kor 5,14-17| J 20,1.11-18 - tom VI)</a>,"
		"<a href=http://mateusz.pl/czytania/2009/20090723.htm>Ga 2,19-20| J 15,1-8 (tom VI)</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090724.htm>Wj 19,17|20,1-17| Mt 13,18-23</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090725.htm>2 Kor 4,7-15| Mt 20,20-28 (tom VI)",
		"<a href=http://mateusz.pl/czytania/2009/20090726.htm>2 Krl 4,42-44| Ef 4,1-6| J 6,1-15</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090727.htm>Wj 32,15-24.30-34| Mt 13,31-35</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090728.htm>Wj 33,7-11|34,5-9.28| Mt 13,36-43</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090729tm>Wj 34,29-35| Mt 13,44-46 | Hbr 13,1-2.14-16| J 11,19-27| Lk 10,38-42 - tom VI)</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090730.htm>Wj 40,16-21.34-38; Mt 13,47-53</a>",
		"<a href=http://mateusz.pl/czytania/2009/20090731.htm>Kpl 23,1.4-11.15-16.27.34b-37| Mt 13,54-58 / 1 Kor 10,31-11,1| Lk 14,25-33 - tom VI</a>,"

 
	new Array(
		"<a href=http://mateusz.pl/czytania/2009/20090801.htm>Kpl 25,1.8-17| Mt 14,1-12 | Rz 8,1-4| Mt 5,13-19 - tom VI",
		"Wj 16,2-4.12-15| Ef 4,17.20-24| J 6,24-35",
		"Lb 11,4b-15| Mt 14,13-21",
		"Lb 12,1-13| Mt 14,22-36 (Ez 3,16-21| Mt 9, 35 - 10,1 - tom VI)",
		"Lb 13,1-2a.25-14,1.26-29.34-35|Mt 15,21-28",
		"Dn 7,9-10.13-14 (2 P 1,16-19)| Mk 9, 2-10 (tom VI)",
		"Pwt 4,32-40| Mt 16,24-28",
		"Pwt 6,4-13| Mt 17,14-20",
		" 1 Krl 19,4-8| Ef 4,30-5,2| J 6,41-51",
		"Mdr 3,1-9| (2 Kor 9,6-10)| J 12,24-26 (tom VI)",
		"Pwt 31,1-8| Mt 18,1-5.10.12-14",
		"Pwt 34,1-12| Mt 18,15-20",
		"Joz 3,7-10a.11.13-17| Mt 18,21 - 19,1",
		"Joz 24,1-13| Mt 19,3-12 (Mdr 3,1-9 (1 J 3,13-16)| J 15,12-16 - tom VI)",
		"1 Krn 15,3-4.15-16|16,1-2| 1 Kor 15,54-57| Lk 11,27-28 (tom VI)",
		"Ap 11,19a|12,1.3-6a.10ab| 1 Kor 15,20-26|Lk 1,39-56 (tom VI)",
     		"Prz 9,1-6| Ef 5,15-20| J 6,51-58",
		"Iz 61,1-3a| 2 P 1,2-11| Mk 1,14-20 (tom VI)",
		"Sdz 6,11-24a| Mt 19,23-30",
		"Sdz 9,6-15| Mt 20,1-16a",
		"Sdz 11,29-39a| Mt 22,1-14 (Syr 39,1a.5b.6-10 albo 1 Kor 2,10b-16| J 17,20-26 - tom VI)",
		"Rt 1,1.3-6.14b-16.22| Mt 22,34-40 (1 Tes 2,2b-8| J 21,15-17 - tom VI)",
		" Rt 2,1-3.8-11|4,13-17| Mt 23,1-12 (Iz 9,1-3.5-6| Lk 1,26-38 - tom VI)",
		"Joz 24,1-2a.15-17.18b| Ef 5,21-32| J 6,54.60-69",
		"Ap 21,9b-14| J 1,45-51 (tom VI)",
		"1 Tes 2,1-8| Mt 23,23-26",
		"Prz 8,22-35 (Iz 2,2-5)| Ga 4,4-7| J 2,1-11 (tom VI)

		"1 Tes 3,7-13| Mt 24,42-51 (Syr 26,1-4.13-16| Lk 7,11-17 - tom VI)",
		"1 Tes 4,1-8| Mt 25,1-13 (1 J 4,7-16| Mt 23,8-12 - tom VI)",

		"Jl 2,21-24.26-27| 1 Tm 6,6-11.17-19| Lk 12,15-21 (tom VII, s. 330 nn.)

                 Czyt.: Pwt 4,1-2.6-8| Jk 1,17-18.21b-22.27| Mk 7,1-8.14-15.21-23",

		1 Tes 4,13-18| Lk 4,16-30",
	
	new Array(
		"1 Tes 5,1-6.9-11; Lk 4,31-37",
		"Kol 1,1-8; Lk 4,38-44",
		"Kol 1,9-14; Lk 5,1-11",
		"Kol 1,15-20; Lk 5,33-39",
		"Kol 1,21-23; Lk 6,1-5",
		"Iz 35,4-7a; Jk 2,1-5; Mk 7,31-37",
		"Kol 1,24-2,3; Lk 6,6-11",
		"Czcibora|Marii|Radoslawa",
		"Aldony|Jakuba|Sergiusza",
		"Eligii|Irmy|Lukasza",
		"Dagny|Jacka|Prota",
		"Amadeusza|Gwidy|Sylwiny",
		"Apolinarego|Eugenii|Lubomira",
		"Bernarda|Mony|Roksany",
		"Albina|Lolity|Ronalda",
		"Jagienki|Kamili|Korneliusza",
		"Franciszka|Lamberty|Narcyza",
		"Ireny|Irminy|Stanislawa",
		"Januarego|Konstancji|Leopolda",
		"Eustachego|Faustyny|Renaty",
		"Darii|Mateusza|Wawrzynca",
		"Maury|Milany|Tomasza",
		"Boguslawa|Liwiusza|Tekli",
		"Dory|Gerarda|Maryny",
		"Aureli|Kamila|Kleofasa",
		"Cypriana|Justyny|Lucji",
		"Damiana|Mirabeli|Wincentego",
		"Libuszy|Waclawy|Waclawa",
		"Michaliny|Michala|Rafala",
		"Geraldy|Honoriusza|Wery"
	),
	new Array(
		"Heloizy|Igora|Remigiusza",
		"Racheli|Slawy|Teofila",
		"Bogumila|Gerarda|Józefy",
		"Edwina|Roslawy|Rozalii",
		"Flawii|Justyna|Rajmunda",
		"Artura|Fryderyki|Petry",
		"Krystyna|Marii|Marka",
		"Brygidy|Loreny|Marcina",
		"Arnolda|Ludwika|Sybili",
		"Franciszka|Loretty|Poli",
		"Aldony|Brunona|Emila",
		"Krystyny|Maksa|Serafiny",
		"Edwarda|Geraldyny|Teofila",
		"Alany|Damiana|Liwii",
		"Jadwigi|Leonarda|Teresy",
		"Ambrozego|Florentyny|Gawla",
		"Antonii|Ignacego|Wiktora",
		"Hanny|Klementyny|Lukasza",
		"Michaliny|Michala|Piotra",
		"Ireny|Kleopatry|Witalisa",
		"Celiny|Hilarego|Janusza",
		"Haliszki|Lody|Przybyslawa",
		"Edwarda|Marleny|Seweryna",
		"Arety|Marty|Marcina",
		"Ingi|Maurycego|Sambora",
		"Ewarysta|Lucyny|Lutoslawy",
		"Iwony|Noemi|Szymona",
		"Narcyza|Serafina|Wioletty",
		"Angeli|Przemyslawa|Zenobii",
		"Augustyny|Lukasza|Urbana",
		"Krzysztofa|Augusta|Saturnina"
	),
	new Array(
		"Konrada|Seweryny|Wiktoryny",
		"Bohdany|Henryka|Tobiasza",
		"Huberta|Mily|Sylwii",
		"Albertyny|Karola|Olgierda",
		"Balladyny|Elzbiety|Slawomira",
		"Arletty|Feliksa|Leonarda",
		"Antoniego|Kaliny|Przemily",
		"Klaudii|Seweryna|Wiktoriusza",
		"Anatolii|Gracji|Teodora",
		"Leny|Lubomira|Natalii",
		"Bartlomieja|Gertrudy|Marcina",
		"Konrada|Renaty|Witolda",
		"Arkadii|Krystyna|Stanislawy",
		"Emila|Laury|Rogera",
		"Amielii|Idalii|Leopolda",
		"Edmunda|Marii|Marka",
		"Grzegorza|Salomei|Walerii",
		"Klaudyny|Romana|Tomasza",
		"Elzbiety|Faustyny|Pawla",
		"Anatola|Edyty|Rafala",
		"Janusza|Marii|Reginy",
		"Cecylii|Jonatana|Marka",
		"Adeli|Felicyty|Klemensa",
		"Emmy|Flory|Romana",
		"Elzbiety|Katarzyny|Klemensa",
		"Leona|Leonarda|Leslawy",
		"Franciszka|Kseni|Maksymiliana",
		"Jakuba|Stefana|Romy",
		"Blazeja|Margerity|Saturnina",
		"Andrzeja|Maury|Ondraszka"
	),
	new Array(
		"Blanki|Edmunda|Eligiusza",
		"Balbiny|Ksawerego|Pauliny",
		"Hilarego|Franciszki|Ksawery",
		"Barbary|Hieronima|Krystiana",
		"Kryspiny|Norberta|Sabiny",
		"Dionizji|Leontyny|Mikolaja",
		"Agaty|Dalii|Sobieslawa",
		"Delfiny|Marii|Wirginiusza",
		"Anety|Leokadii|Wieslawa",
		"Danieli|Bohdana|Julii",
		"Biny|Damazego|Waldemara",
		"Ady|Aleksandra|Dagmary",
		"Dalidy|Juliusza|Lucji",
		"Alfreda|Izydora|Zoriny",
		"Celiny|Ireneusza|Niny",
		"Albiny|Sebastiana|Zdzislawy",
		"Jolanty|Lukasza|Olimpii",
		"Boguslawa|Gracjana|Laury",
		"Beniaminy|Dariusza|Gabrieli",
		"Bogumily|Dominika|Zefiryna",
		"Honoraty|Seweryny|Tomasza",
		"Bozeny|Drogomira|Zenona",
		"Dagny|Slawomiry|Wiktora",
		"Adama|Ewy|Irminy",
		"Anety|Glorii|Piotra",
		"Dionizego|Kaliksta|Szczepana",
		"Fabioli|Jana|Zanety",
		"Antoniusza|Cezarego|Teofilii",
		"Dawida|Dionizy|Tomasza",
		"Eugeniusza|Katarzyny|Sabiny",
		"Mariusza|Melanii|Sylwestra"
		)
));
