/*
 * 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=="") {
			if (name.substring(len-4, 1)=='l') {
				name = name.substring(0, len-3);
			} else {
				name = name.substring(0, len-3) + "";
			}
		} else if (last3=="") {
			name = name.substring(0, len-3) + "";
		} else if (last3=="") {
			name = name.substring(0,len-3) + (vowel3?"":"");
		} else if (last2=="" && !vowel2) {
			name =  name.substring(0,len-2) + "";
		} else if (last2=="" && !vowel2) {
			name = name.substring(0, len-2) + "";
		} else {
			name = name.substring(0, len-1) +
				(last2.substring(2,1)==''?'':'');
		}

		ret[i] = name;
	}
	return new NamedayNames(ret);
};


//
// For backward compatibility
//
function WypiszImieniny(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(
		"Wszystkiego najlepszego w Nowym Roku:).",
		"Am I alive? Am I asleep? Or have I died?.",
		"Oto zmyslony swiat, który się zrodził by w ciszy trwać.",
		"So why do I create just to be swallowed?",
		"Caught in the corners of my mind.",
		"I will make it go away. Can't be here no more.",
		"Mam jeden cel, gdy przyjdzie dzień, wyzwolę gniew.",
		"Seems this is the only way. I will soon be gone. These feelings will be gone.",
		"All the shit I seem to take. All alone I seem to break.",
		"I have lived the best I can. Does this make me not a man?.",
		"Czasami wolę być zupełnie sam, niezdarnie tanćzyć na granicy zła.",
		"I hate to say it, but it's probably me.",
		"What is it that I've become? Is there something more to come?.",
		"We got a fucked up reason to live.",
		"Maybe I'm insane. Walking on a wire. Maybe I'm the same. Nothing to take me higher.",
		"Posiadam wiarę w niemożliwą moc. Potrafię jesli chcę rozswietlić mrok.",
		"How I wish that I could fly.",
		"So when I feel the need I think it's time to bleed.",
		"I’m gonna cut myself and watch the blood hit the ground.",
		"Na pewno czułes kiedys wieli strach, że oto mija Twój najlepszy czas.",
		"Z okazji Dnia Babci wszystkim Babciom życzę wszystkiego najlepszego:).",
		"This place inside my mind a place I like to hide.",
		"I can see, I can see, I'm going blind.",
		"You see I cannot be forsaken because I'm not the only one.",
		"I niby wszystko jest tak jak powinno być za chwilę zbudzi mnie szary swit.",
		"I, I am confused, fighting myself Wanting to give in, needing your help.",
		"Scream at me, and if you like throw your hate at me with all your might.",
		"Look into my eyes, I am free You're just a wanna-be.",
		"From time to time i pray i pray for you.",
		"Hit me clown because I'm not from your town, hit me clown.",
		"All my life, who am I?!?."
	),
	new Array(
		"I'm just a pretty boy, living in this fucked up world.",
		"Another day I'll live forever! Why should I? I'm gonna try.",
		"In our foggy towns are the shadows of being.",
		"I can't' I can't' I can't' I can't stand losing you.",
		"Who are you to see that I can't speak what's on my mind?.",
		"I would like to search inside for all the things that you will.",
		"Thinking about your life Thinking about your inner fears.",
		"Szła dziewczynka lasem noca.Raczki,nóżki jej się poca.Zobaczyła wilka w krzakach.Mysli K... będzie draka.",
		"Please God help me Please God free me Please God save me, from my painful situation.",
		"Sick of the same old things So I dig a hole, bury pain!.",
		"Always screwing with my mind, a thorn in my spine.",
		"Cisza i ogień we mnie i w tobie.",
		"Hey man look inside, now you need your own life.",
		"A freak, that I'm sure. A freak, that it's yours.",
		"I have no place to run and hide I have no place to hide, which I like.",
		"Teraz ja sam. Najmniejszy z was. Nie wiem czy jeszcze zdołam trwać.",
		"Oh I'm gonna see, somehow it always seems that I'm dreamin' of something that I can never be.",
		"What's my problem today?.",
		"How can I cry over someone I never loved?.",
		"Pomiędzy mna a Bogiem. Pomiędzy mna a Swiatem. Pomiędzy wszystkim rosnie noc.",
		"I can never win, my self I don't like... Something is calling, I can't keep from falling.",
		"Wszystkiego najlepszego z okazji imienin Martusiu :-).",
		"De do do do' de da da da. Is all I want to say to you.",
		"Doskonale znika czas. Doskonale i nie ma nic. Jeszcze dalej idę sam. Jeszcze dalej trzeba isć!.",
		"God told me, I've already got the life.",
		"Each day I feel so hollow, inside I was beating me.",
		"Tylko błagam nie załamuj rak. Chroni nas Bóg.",
		"Why is it always you want something you can never have?.",
		"All I want in life is to be happy."
	),
	new Array(
		"Something takes a part of me. Something lost and never seen.",
		"Everytime I start to believe, Something's raped and taken from me....",
		"Sometimes I cannot take this place. Sometimes it's my life I can't taste.",
		"Feeling like a freak on a leash. Feeling like I have no release.",
		"Dobre niebo kiedy wszyscy spia pochlipuje modlitwami niestrudzonych ust.",
		"Let me be me.",
		"I'll sell the stock. We'll spend all the money. We're starting up a brand new day.",
		"I hope that someone gets my message in a bottle.",
		"Seems I'm not alone at being alone. Hundred billion castaways looking for a home.",
		"Nie do wiary, że tak bardzo płonę. Nie do wiary, że rozumiem każdy znak.",
		"You flirt with suicide Sometimes, that's ok. I flirt with suicide Sometimes kill the pain.",
		"Feeling like a fool inside. Feeling all that you hide.",
		"I need somebody, someone.",
		"Nauczyłem się umierać w sobie. Nauczyłem się ukrywać cały strach.",
		"I look, a sign. I need someone. Inside, to help me out. With what?.",
		"Please give me some of it back the feelings I had.",
		"It's funny how we've just started.",
		"Czas poplatał kroki. Jest łagodny i beztroski. Ma zielone kocie oczy tak samo jak ty.",
		"I only do it for the fun. That's my game.",
		"Can I throw it all away? Take back what's mine.",
		"This time I feel it taking me to a place I'm meant to be.",
		"W domu będzie ogień. A do domu proste drogi wioda słusznie moje stopy. Nie zabraknie mi sił.",
		"Being alone is what you fear. Are you lonely? Yes lonely.",
		"We fall in space. We can't look down. Death may come. Peace I have found.",
		"Oh God the feelings I feel. When can they be thrown in a cage?.",
		"I can't take this anymore. I always stay when I should leave.",
		"I'm not doing great. I feel like I'm dead.",
		"Czekanie sprawia, że gorzknieje cała słodycz w nas.",
		"Wszystkiego najlepszego dla odwiedzających z okazji moich urodzin:).",
		"Realised I can never win. Sometimes I feel like I have failed.",
		"I am the one who chose my path."
	),
	new Array(
		"My heart screams inside with pride.",
		"Słowa zlewaja się w fałszywy ton gdy nadwrażliwosć jest jak bilet w jedna stronę stad.",
		"I'm really weak, missing parts, incomplete.",
		"Don't let them throw me away.",
		"Lying here. I'm dying here.",
		"Nasz mały, chorobliwie duszny kraj. Brak wiary, każdy Bogiem sobie sam.",
		"I am alive. I will never run away.",
		"Z okazji Wielkanocy odwiedzającym życzę wszystkigo najlepszego:-).",
		"You breathe in but can't breathe out.",
		"How come i'm thinking you'd be the last to know.",
		"what looks so strong, so delicate.",
		"Mina wieki zanim wróci swiatło. Mina swiaty zanim wróci spokój.",
		"How can you deny the blood that's flowing through you.",
		"It's not wrong to let go And let the woman ride you.",
		"A jesli w imię Boga zechcesz isć, zostaw po drodze niepotrzebny krzyż.",
		"Idz gdzie chcesz aż najmniejsza z dróg dotknie twoich stóp.",
		"Well I wish there was someone to love me.",
		"When I used to be someone and I knew there was someone that loved me.",
		"As I sit here frozen alone even ghosts get tired and go home.",
		"Please tell me theres something better.",
		"And I wish there was something more than this saturated loneliness.",
		"And I wish I could feel it. And I wish I could steal it.",
		"Abduct it, corrupt it, but I never can it's just saturated loneliness.",
		"Stań na najwyższej z gór i połknij wiatr bys wykzyczeć mógł.",
		"Turn around and say it's me again.",
		"Let me go, I'll be fine. Frozen here in time. Sick Of being alive.",
		"I'll be ready. Give Me the morphine and I'll go asleep.",
		"To ostatnia z dróg szuka twoich stóp. Ja tańczę, a niebo, niebo gra. Ja spiewam, prze-niebieski czas.",
		"When you die could you scream?.",
		"Love might be the last legal drug."
	),
	new Array(
		"When you cry let it flow.",
		"Przed switem obudziłem się by żyć ... skazany na ponury miejski zgrzyt.",
		"Where do you go when no one's there?.",
		"Pomiędzy pożądaniem, a rozkosza tkwi dolina nocy.",
		"We don't need no thought control.",
		"Don't think I need anything at all.",
		"Lecz przecież Bóg dobrze wie dlaczego dławi mnie wstręt.",
		"Lecz przecież Bóg dobrze wie ... dlaczego strach nabiera mocy i zniewala rozum.",
		"Goodbye, cruel world. I'm leaving you today.",
		"Goodbye, all you people. There's nothing you can say To make me change my mind .Goodbye.",
		"Mimo że zgubiłem się. Mimo że zabrnałem w mrok. Wymieszałem z błotem krew. Ocaleję mimo to.",
		"This town is our town. It is so glamorous.",
		"So you see I tried this all for you.",
		"Ginie nadzieja i moc. Rosnie apetyt na zło. Zwycięża ci co nienawiscia silni szydza z innych.",
		"Inside I'm afraid , afraid of who I am.",
		"nawet kiedy wszystko straci sens znajdziesz przestrzeń gdzie wielka wiara tłumi lęk.",
		"I'm trapped in this world lonely and fading. Heartbroken and waiting for you to come.",
		"We are stuck in this world.",
		"Droga wymyka się spod stóp. Miasto przechyla się przez mrok.",
		"The hunger inside given to me, makes me what I am.",
		"You look down on me, hey what you see, take this gift from me, you will soon be ME!.",
		"Za kryształowa sciana słów. Za nieprzebytym lasem kłamstw chowa się ze mna dobry duch.",
		"Another lonely day with no one here but me.",
		"I'm an alien' I'm a legal alien.",
		"I hope my legs don't break walking on the moon.",
		"How many lonely, sleepless nights? How many lies, how many fights?.",
		"Spadam, po woli spadam w korytarze swiateł w pomruki znaczeń.",
		"Spadam, jak by nie było całego swiata, jak by nie było nawet mnie.",
		"Spadam, pomiędzy zdania w niedorzecznosći bez wahania.",
		"Spadam,chroni mnie wiara. Niech będzie chwała Bogu, a w mojej duszy spokój.",
		"Spadam,co się wyprawia? Cały w spadaniu. Cały ze swiatła."
	),
	new Array(
		"Spadam,jaka zabawa, jaki tu spokój, równowaga.",
		"Spadam,nie czuję ciała i tylko błagam o łaskę trwania.",
		"A może to mój chory sen? A może smierć? A może nie ma nie, nie ma, może nie ma mnie?.",
		"Am I alive? Am I asleep? Or have I died?.",
		"Oto zmyslony swiat, który się zrodził by w ciszy trwać.",
		"So why do I create just to be swallowed?",
		"Caught in the corners of my mind.",
		"I will make it go away. Can't be here no more.",
		"Mam jeden cel, gdy przyjdzie dzień, wyzwolę gniew.",
		"Seems this is the only way. I will soon be gone. These feelings will be gone.",
		"All the shit I seem to take. All alone I seem to break.",
		"I have lived the best I can. Does this make me not a man?.",
		"Czasami wolę być zupełnie sam, niezdarnie tanćzyć na granicy zła.",
		"I hate to say it, but it's probably me.",
		"What is it that I've become? Is there something more to come?.",
		"We got a fucked up reason to live.",
		"Maybe I'm insane. Walking on a wire. Maybe I'm the same. Nothing to take me higher.",
		"Posiadam wiarę w niemożliwą moc. Potrafię jesli chcę rozswietlić mrok.",
		"How I wish that I could fly.",
		"So when I feel the need I think it's time to bleed.",
		"I’m gonna cut myself and watch the blood hit the ground.",
		"Na pewno czułes kiedys wieli strach, że oto mija Twój najlepszy czas.",
		"This place inside my mind a place I like to hide.",
		"I can see, I can see, I'm going blind.",
		"You see I cannot be forsaken because I'm not the only one.",
		"I niby wszystko jest tak jak powinno być za chwilę zbudzi mnie szary swit.",
		"I, I am confused, fighting myself Wanting to give in, needing your help.",
		"Scream at me, and if you like throw your hate at me with all your might.",
		"Look into my eyes, I am free You're just a wanna-be.",
		"From time to time i pray i pray for you."
	),
	new Array(
		"Hit me clown because I'm not from your town, hit me clown.",
		"All my life, who am I?!?.",
		"I'm just a pretty boy, living in this fucked up world.",
		"Another day I'll live forever! Why should I? I'm gonna try.",
		"In our foggy towns are the shadows of being.",
		"I can't' I can't' I can't' I can't stand losing you.",
		"Who are you to see that I can't speak what's on my mind?.",
		"I would like to search inside for all the things that you will.",
		"Thinking about your life Thinking about your inner fears.",
		"Szła dziewczynka lasem noca.Raczki,nóżki jej się poca.Zobaczyła wilka w krzakach.Mysli K... będzie draka.",
		"Please God help me Please God free me Please God save me, from my painful situation.",
		"Sick of the same old things So I dig a hole, bury pain!.",
		"Always screwing with my mind, a thorn in my spine.",
		"Cisza i ogień we mnie i w tobie.",
		"Hey man look inside, now you need your own life.",
		"A freak, that I'm sure. A freak, that it's yours.",
		"I have no place to run and hide I have no place to hide, which I like.",
		"Teraz ja sam. Najmniejszy z was. Nie wiem czy jeszcze zdołam trwać.",
		"Oh I'm gonna see, somehow it always seems that I'm dreamin' of something that I can never be.",
		"What's my problem today?.",
		"How can I cry over someone I never loved?.",
		"Pomiędzy mna a Bogiem. Pomiędzy mna a Swiatem. Pomiędzy wszystkim rosnie noc.",
		"I can never win, my self I don't like... Something is calling, I can't keep from falling.",
		"De do do do' de da da da. Is all I want to say to you.",
		"Doskonale znika czas. Doskonale i nie ma nic. Jeszcze dalej idę sam. Jeszcze dalej trzeba isć!.",
		"God told me, I've already got the life.",
		"Each day I feel so hollow, inside I was beating me.",
		"Tylko błagam nie załamuj rak. Chroni nas Bóg.",
		"Why is it always you want something you can never have?.",
		"All I want in life is to be happy.",
		"Something takes a part of me. Something lost and never seen."
	),
	new Array(
		"Everytime I start to believe, Something's raped and taken from me....",
		"Sometimes I cannot take this place. Sometimes it's my life I can't taste.",
		"Feeling like a freak on a leash. Feeling like I have no release.",
		"Dobre niebo kiedy wszyscy spia pochlipuje modlitwami niestrudzonych ust.",
		"Let me be me.",
		"I'll sell the stock. We'll spend all the money. We're starting up a brand new day.",
		"I hope that someone gets my message in a bottle.",
		"Seems I'm not alone at being alone. Hundred billion castaways looking for a home.",
		"Nie do wiary, że tak bardzo płonę. Nie do wiary, że rozumiem każdy znak.",
		"You flirt with suicide Sometimes, that's ok. I flirt with suicide Sometimes kill the pain.",
		"Feeling like a fool inside. Feeling all that you hide.",
		"I need somebody, someone.",
		"Nauczyłem się umierać w sobie. Nauczyłem się ukrywać cały strach.",
		"I look, a sign. I need someone. Inside, to help me out. With what?.",
		"Please give me some of it back the feelings I had.",
		"It's funny how we've just started.",
		"Czas poplatał kroki. Jest łagodny i beztroski. Ma zielone kocie oczy tak samo jak ty.",
		"I only do it for the fun. That's my game.",
		"Can I throw it all away? Take back what's mine.",
		"This time I feel it taking me to a place I'm meant to be.",
		"W domu będzie ogień. A do domu proste drogi wioda słusznie moje stopy. Nie zabraknie mi sił.",
		"Being alone is what you fear. Are you lonely? Yes lonely.",
		"We fall in space. We can't look down. Death may come. Peace I have found.",
		"Oh God the feelings I feel. When can they be thrown in a cage?.",
		"I can't take this anymore. I always stay when I should leave.",
		"I'm not doing great. I feel like I'm dead.",
		"Czekanie sprawia, że gorzknieje cała słodycz w nas.",
		"Realised I can never win. Sometimes I feel like I have failed.",
		"I am the one who chose my path.",
		"My heart screams inside with pride.",
		"Słowa zlewaja się w fałszywy ton gdy nadwrażliwosć jest jak bilet w jedna stronę stad."
	),
	new Array(
		"I'm really weak, missing parts, incomplete.",
		"Don't let them throw me away.",
		"Lying here. I'm dying here.",
		"Nasz mały, chorobliwie duszny kraj. Brak wiary, każdy Bogiem sobie sam.",
		"I am alive. I will never run away.",
		"You breathe in but can't breathe out.",
		"How come i'm thinking you'd be the last to know.",
		"what looks so strong, so delicate.",
		"Mina wieki zanim wróci swiatło. Mina swiaty zanim wróci spokój.",
		"How can you deny the blood that's flowing through you.",
		"It's not wrong to let go And let the woman ride you.",
		"A jesli w imię Boga zechcesz isć, zostaw po drodze niepotrzebny krzyż.",
		"Idz gdzie chcesz aż najmniejsza z dróg dotknie twoich stóp.",
		"Well I wish there was someone to love me.",
		"When I used to be someone and I knew there was someone that loved me.",
		"As I sit here frozen alone even ghosts get tired and go home.",
		"Please tell me theres something better.",
		"And I wish there was something more than this saturated loneliness.",
		"And I wish I could feel it. And I wish I could steal it.",
		"Abduct it, corrupt it, but I never can it's just saturated loneliness.",
		"Stań na najwyższej z gór i połknij wiatr bys wykzyczeć mógł.",
		"Turn around and say it's me again.",
		"Let me go, I'll be fine. Frozen here in time. Sick Of being alive.",
		"I'll be ready. Give Me the morphine and I'll go asleep.",
		"To ostatnia z dróg szuka twoich stóp. Ja tańczę, a niebo, niebo gra. Ja spiewam, prze-niebieski czas.",
		"When you die could you scream?.",
		"Love might be the last legal drug.",
		"When you cry let it flow.",
		"Przed switem obudziłem się by żyć ... skazany na ponury miejski zgrzyt.",
		"Where do you go when no one's there?."
	),
	new Array(
		"Pomiędzy pożądaniem, a rozkosza tkwi dolina nocy.",
		"We don't need no thought control.",
		"Wszystkiego najlepszego z okazji urodzin Martusiu.",
		"Don't think I need anything at all.",
		"Lecz przecież Bóg dobrze wie dlaczego dławi mnie wstręt.",
		"Lecz przecież Bóg dobrze wie ... dlaczego strach nabiera mocy i zniewala rozum.",
		"Goodbye, cruel world. I'm leaving you today.",
		"Goodbye, all you people. There's nothing you can say To make me change my mind .Goodbye.",
		"Mimo że zgubiłem się. Mimo że zabrnałem w mrok. Wymieszałem z błotem krew. Ocaleję mimo to.",
		"This town is our town. It is so glamorous.",
		"So you see I tried this all for you.",
		"Ginie nadzieja i moc. Rosnie apetyt na zło. Zwycięża ci co nienawiscia silni szydza z innych.",
		"Inside I'm afraid , afraid of who I am.",
		"nawet kiedy wszystko straci sens znajdziesz przestrzeń gdzie wielka wiara tłumi lęk.",
		"I'm trapped in this world lonely and fading. Heartbroken and waiting for you to come.",
		"We are stuck in this world.",
		"Droga wymyka się spod stóp. Miasto przechyla się przez mrok.",
		"The hunger inside given to me, makes me what I am.",
		"You look down on me, hey what you see, take this gift from me, you will soon be ME!.",
		"Za kryształowa sciana słów. Za nieprzebytym lasem kłamstw chowa się ze mna dobry duch.",
		"Another lonely day with no one here but me.",
		"I hope my legs don't break walking on the moon.",
		"How many lonely, sleepless nights? How many lies, how many fights?.",
		"Spadam, po woli spadam w korytarze swiateł w pomruki znaczeń.",
		"Spadam, jak by nie było całego swiata, jak by nie było nawet mnie.",
		"Spadam, pomiędzy zdania w niedorzecznosći bez wahania.",
		"Spadam,chroni mnie wiara. Niech będzie chwała Bogu, a w mojej duszy spokój.",
		"Spadam,co się wyprawia? Cały w spadaniu. Cały ze swiatła.",
		"Spadam,jaka zabawa, jaki tu spokój, równowaga.",
		"Spadam,nie czuję ciała i tylko błagam o łaskę trwania.",
		"A może to mój chory sen? A może smierć? A może nie ma nie, nie ma, może nie ma mnie?."
	),
	new Array(
		"Swięty odpoczynek racz Im dać Panie, a swiatłosć wiekuista niechaj Im swieci, Amen.",
		"Am I alive? Am I asleep? Or have I died?.",
		"Oto zmyslony swiat, który się zrodził by w ciszy trwać.",
		"So why do I create just to be swallowed?",
		"Caught in the corners of my mind.",
		"I will make it go away. Can't be here no more.",
		"Mam jeden cel, gdy przyjdzie dzień, wyzwolę gniew.",
		"Seems this is the only way. I will soon be gone. These feelings will be gone.",
		"All the shit I seem to take. All alone I seem to break.",
		"I have lived the best I can. Does this make me not a man?.",
		"Czasami wolę być zupełnie sam, niezdarnie tanćzyć na granicy zła.",
		"I hate to say it, but it's probably me.",
		"What is it that I've become? Is there something more to come?.",
		"We got a fucked up reason to live.",
		"Maybe I'm insane. Walking on a wire. Maybe I'm the same. Nothing to take me higher.",
		"Posiadam wiarę w niemożliwą moc. Potrafię jesli chcę rozswietlić mrok.",
		"How I wish that I could fly.",
		"So when I feel the need I think it's time to bleed.",
		"I’m gonna cut myself and watch the blood hit the ground.",
		"Na pewno czułes kiedys wieli strach, że oto mija Twój najlepszy czas.",
		"This place inside my mind a place I like to hide.",
		"I can see, I can see, I'm going blind.",
		"You see I cannot be forsaken because I'm not the only one.",
		"I niby wszystko jest tak jak powinno być za chwilę zbudzi mnie szary swit.",
		"I, I am confused, fighting myself Wanting to give in, needing your help.",
		"Scream at me, and if you like throw your hate at me with all your might.",
		"Look into my eyes, I am free You're just a wanna-be.",
		"From time to time i pray i pray for you.",
		"Hit me clown because I'm not from your town, hit me clown.",
		"All my life, who am I?!?."
	),
	new Array(
		"I'm just a pretty boy, living in this fucked up world.",
		"Another day I'll live forever! Why should I? I'm gonna try.",
		"In our foggy towns are the shadows of being.",
		"I can't' I can't' I can't' I can't stand losing you.",
		"Who are you to see that I can't speak what's on my mind?.",
		"I would like to search inside for all the things that you will.",
		"Thinking about your life Thinking about your inner fears.",
		"Szła dziewczynka lasem noca.Raczki,nóżki jej się poca.Zobaczyła wilka w krzakach.Mysli K... będzie draka.",
		"Please God help me Please God free me Please God save me, from my painful situation.",
		"Sick of the same old things So I dig a hole, bury pain!.",
		"Always screwing with my mind, a thorn in my spine.",
		"Cisza i ogień we mnie i w tobie.",
		"Hey man look inside, now you need your own life.",
		"A freak, that I'm sure. A freak, that it's yours.",
		"I have no place to run and hide I have no place to hide, which I like.",
		"Teraz ja sam. Najmniejszy z was. Nie wiem czy jeszcze zdołam trwać.",
		"Oh I'm gonna see, somehow it always seems that I'm dreamin' of something that I can never be.",
		"What's my problem today?.",
		"How can I cry over someone I never loved?.",
		"Pomiędzy mna a Bogiem. Pomiędzy mna a Swiatem. Pomiędzy wszystkim rosnie noc.",
		"I can never win, my self I don't like... Something is calling, I can't keep from falling.",
		"All I want in life is to be happy.",
		"Why is it always you want something you can never have?.",
		"Wszystkiego najlepszego z okazji Bożego Narodzenia:-).",
		"Wszystkiego najlepszego z okazji Bożego Narodzenia:-).",
		"Wszystkiego najlepszego z okazji Bożego Narodzenia:-).",
		"God told me, I've already got the life.",
		"My heart screams inside with pride.",
		"Goodbye, cruel world. I'm leaving you today.",
		"Goodbye, all you people. There's nothing you can say To make me change my mind .Goodbye.",
		"Udanej imprezy Sylwestrowej i szczęśliwego Nowego Roku."
	)
));
