// Copyright Konrad Persson, sm2uyn@hem.passagen.se

var antal = 13;
var x = Math.random();
var text1;
var text2;
var text3;

if (x < 1/antal) {
	text1="Every day sends future to past,<br>"+
		"Every breath leaves me one less to my last.";
	text2="Pull Me Under";
	text3="Kevin Moore, Dream Theater";
}
else if (x <= 2/antal) {
	text1="Close your eyes,<br>"+
		"You'll find all you need in your mind.";
	text2="Take the Time"
	text3="Dream Theater";
}
else if (x <= 3/antal) {
	text1="Reading through all of the digests you show me,<br>"+
		"I notice the way that you think you controll me.";
	text2="Raise the Knife";
	text3="Mike Portnoy, Dream Theater";
}
else if (x <= 4/antal) {
	text1="´Carpe diem, seize the day´<br>"+
		"I´ll always remember<br>"+
		"The chill of November<br>"+
		"The news of the fall<br>"+
		"The sounds in the hall<br>"+
		"The clock on the wall ticking away<br>"+
		"´Seize the Day´ I heard him say<br>"+
		"Life will not always be this way<br>"+
		"Look around Hear the sounds<br>"+
		"Cherish your life while you´re still around</p><p style='margin-left:3em;margin-bottom:0em;'>"+
		"We can learn from the past<br>"+
		"But those days are gone<br>"+
		"We can hope for the future<br>"+
		"But there might not be one<br>"+
		"The words stuck in my mind<br>"+
		"alive from what I´ve learned<br>"+
		"I have to seize the day";
	text2="A Change of Seasons";
	text3="Mike Portnoy, Dream Theater";
}
else if (x <= 5/antal) {
	text1="The message of a heart can not be delivered in words.";
	text2="";
	text3="";
}
else if (x <= 6/antal) {
	text1="Deep in our hearts,<br>"+
		"We hope our dreams come true.<br>"+
		"The only thing is,<br>"+
		"What are we to do?";
	text2="Giants";
	text3="Michael Weikath, Helloween";
}
else if (x <= 7/antal) {
	text1="I got it comin' there is nothing that can stop me.<br>"+
		"I feel it comin' there's no limit to the free me.<br>"+
		"The sky is open and the angels sing it so clear.<br>"+
		"I am the winner over all these hidden fears.";
	text2="Be True to Yourself";
	text3="Michael Kiske";
}
else if (x <= 8/antal) {
	text1="I'm sick of finding there is no one you can trust.<br>"+
		"I'm sick of hearing money making's a must.<br>"+
		"I'm tired of seeing people slander behind backs.<br>"+
		"I can't stand seeing you sneeking up my arse!</p><p style='margin-left:3em;margin-bottom:0em;'>"+
		"I get ill when I see what people do for cash.<br>"+
		"How little love means and everyday it means less.<br>"+
		"Headline-lies to feed the hunger for hate.<br>"+
		"Can anybody tell me that it's not too late?";
	text2="So Sick";
	text3="Michael Kiske";
}
else if (x <= 9/antal) {
	text1="Well it's hip to be stupid - so I like to be smart.<br>"+
		"And when they say it's all over - I like to give it a start.<br>"+
		"And when it's hip to be hip - I give a hip hip shit.<br>"+
		"And when they want me to go on - I'm pretty sure that I quit.";
	text2="So Sick";
	text3="Michael Kiske";
}
else if (x <= 10/antal) {
	text1="They'll be saying their prayers when the moment comes,<br>"+
		"There'll be penance to pay when it's judgement day.";
	text2="Sign of the Cross";
	text3="Steve Harris, Iron Maiden";
}
else if (x <= 11/antal) {
	text1="And when thou prayest, thou shalt not be as the hypocrites are: for they love to pray standing in the synagogues and in the corners of the streets, that they may be seen of men. Verily I say unto you, They have their reward.<br>"+
		"But thou, when thou prayest, enter into thy closet, and when thou hast shut thy door, pray to thy Father which is in secret; and thy Father which seeth in secret shall reward thee openly.<br>"+
		"But when ye pray, use not vain repetitions, as the heathen do: for they think that they shall be heard for their much speaking.<br>"+
		"Be not ye therefore like unto them: for your Father knoweth what things ye have need of, before ye ask him.";
	text2="";
	text3="Matthew 6:5-8";
}
else if (x <= 12/antal) {
	text1="Gather ye rosebuds while ye may,<br>"+
		"Old Time is still a-flying;<br>"+
		"And this same flower that smiles today,<br>"+
		"Tomorrow will be dying."
	text2="To the Virgins, To Make Much of Time";
	text3="Robert Herrick";
}
else if (x <= 13/antal) {
	text1="Love should come with a warning sign:<br>"+
		"&#34;Danger! May cause internal wounds.&#34;";
	text2="";
	text3="&#34;Zea&#34;";
}

document.write("<p style='margin-left:3em;margin-right:1em;margin-bottom:0em;'>" + text1 + "</p>\n");
if (text2 == "")
	document.write("<p style='margin-left:5em;margin-top:0em;'><i>" + text2 + "<br>" + text3 + "</i></p>\n");
else
	document.write("<p style='margin-left:5em;margin-top:0em;'><i>&#34;" + text2 + "&#34;<br>" + text3 + "</i></p>\n");
