function ShowQuote(k, l){

var i;
var j;

dayQuote = new Array();
for (i = 1; i < 13; i++){
	dayQuote[i] = new Array();
}
for (i = 1; i < 13; i++){
		for (j=1; j<32; j++){

dayQuote[1][1]="What we learn to do<br> we learn by doing.<br><br> -- Aristotle";
dayQuote[1][2]="The strongest principle for growth<br> lies in human choice.<br><br> -- George Eliot";	
dayQuote[1][3]="He that respects himself<br> is safe from others; he wears a coat of mail<br> that none can pierce.<br><br> -- Henry Wadsworth Longfellow.";
dayQuote[1][4]="There is nothing the body suffers<br> the soul may not profit by.<br><br> -- George Meredith";
dayQuote[1][5]="We must be willing<br> to get rid of the life we planned,<br> so as to have the life<br> that is waiting for us.<br><br> -- Joseph Campbell";
dayQuote[1][6]="As you set out in search of Ithaka<br>Pray that your journey be long, full of adventures, full of awakenings.<br> Do not fear the monsters of old.....<br>You will meet them in your travels<br> if your thoughts are exalted and remain high,<br> if authentic passions stir our mind, body and spirit.<br> You will not encounter fearful monsters<br> if you do not carry them within your soul,<br> if your soul does not set them up in front of you.<br><br> - Constantine Peter Cavafy";
dayQuote[1][7]="A friend is a present<br> you give to yourself.<br><br> -- Robert Louis Stevenson";
dayQuote[1][8]="I would not exchange the laughter of my heart<br> for the fortunes of the multitudes;<br> nor would I be content<br> with converting my tears.....into calm.<br> It is my fervent hope<br> that my whole life on this earth<br> will ever be tears and laughter.<br><br> -- Kahlil Gibran";
dayQuote[1][9]="We cannot tell what may happen to us<br> in the strange medley of life.<br> But we can decide what happens in us,<br> how we can take it, what we do with it,<br> and that is what really counts in the end.<br><br> -- Joseph Fort Newton";
dayQuote[1][10]="By yielding you may obtain victory.<br><br> -- Ovid";
dayQuote[1][11]="Patience is the key to paradise.<br><br> -- Turkish Proverb";
dayQuote[1][12]="A man should never be ashamed<br> to own he has been in the wrong,<br> which is but saying, in other words,<br> that he is wiser today than he was yesterday.<br><br> -- Alexander Pope";
dayQuote[1][13]="Troubles are often the tools<br> by which God fashions us for better things.<br><br> -- H. W. Beecher";
dayQuote[1][14]="Half an hour's meditation is essential<br> except when you are very busy.<br> Then a full hour is needed.<br><br> -- Francis de Sales";
dayQuote[1][15]="What we learn to do<br> we learn by doing.<br><br> -- Aristotle";


if (i==k && j==l){
document.write (dayQuote[i][j]);
}

}
}


}