function initArray()            {
this.length = 47
this[1]  = "I would fain die a dry death.   -The Tempest"
this[2]  = "There's beggary in the love that can be reckon'd.   -Antony and Cleopatra"
this[3]  = "Why, she would hang on him, as if increase of appetite had grown by what it fed on.    -Hamlet"
this[4]  = "We cannot all be masters, nor all masters cannot be truly follow'd. -Othello"
this[5]  = "Season your admiration for a while.    -Hamlet"
this[6]  = "Give it an understanding, but no tongue.   -Hamlet"
this[7]  = "Come unto these yellow sands, and then take hands: courtsied when you have, and kiss'd the wild waves whist.    -The Tempest"
this[8]  = "The attempt and not the deed confounds us.    -Macbeth"
this[9]  = "Misery acquaints a man with strange bedfellows.    -The Tempest"
this[10]  = "He that dies pays all debts.    -The Tempest"
this[11]  = "But in the gross and scope of my opinion, this bodes some strange eruption to our state.    -Hamlet"
this[12]  = "Small to greater matters must give way.   -Antony and Cleopatra"
this[13]  = "Epicurean cooks sharpen with cloyless sauce his appetite.    -Antony and Cleopatra"
this[14]  = "There 's small choice in rotten apples.    -The Taming of the Shrew"
this[15]  = "Men's judgements are a parcel of their fortunes; and things outward do draw the inward quality after them, to suffer all alike.    -Antony and Cleopatra"
this[16]  = "If there be, or ever were, one such, it's past the size of dreaming.    -Antony and Cleopatra"
this[17]  = "Now would I give a thousand furlongs of sea for an acre of barren ground.    -The Tempest"
this[18]  = "Like one who having into truth, by telling of it, made such a sinner of his memory, to credit his own lie. -The Tempest"
this[19]  = "Neither a borrower nor a lender be; for loan oft loses both itself and friend, and borrowing dulls the edge of husbandry. This above all: to thine own self be true, and it must follow, as the night the day, thou canst not then be false to any man.    -Hamlet"
this[20]  = "Cut off even in the blossoms of my sin, unhousell'd, disappointed, unaneled, no reckoning made, but sent to my account with all my imperfections on my head.    -Hamlet"
this[21]  = "The eagle suffers little birds to sing.    -Titus Andronicus"
this[22]  = "Doubt thou the stars are fire; doubt that the sun doth move; doubt truth to be aliar; but never doubt I love.    -Hamlet"
this[23]  = "To be honest as this world goes, is to be one man picked out of ten thousand.   -Hamlet"
this[24]  = "Self-love, my liege, is not so vile a sin as self-neglecting.    -King Henry V"
this[25]  = "A dream itself is but a shadow.    -Hamlet"
this[26]  = "Beggar that I am, I am even poor in thanks.    -Hamlet"
this[27]  = "Your beauty, that did haunt me in my sleep to undertake the death of all the world, so I might live one hour in your sweet bosom.    -Richard III"
this[28]  = "Do not, as some ungracious pastors do, show me the steep and thorny way to heaven; whiles, like a puff'd and reckless libertine, Himself the primrose path of dalliance treads, and recks not his own rede.    -Hamlet"
this[29]  = "And oftentimes, to win us to our harm, the instruments of darkness tell us truths, win us with honest trifles, to betray's in deepest consequence.    -Macbeth"
this[30]  = "Though it make the unskilful laugh, cannot but make the judicious grieve.    -Hamlet"
this[31]  = "Sweet mercy is nobility's true badge.    -Titus Andronicus"
this[32]  = "Nay, then, let the devil wear black, for I'll have a suit of sables.    -Hamlet"
this[33]  = "Life is as tedious as a twice-told tale vexing the dull ear of a drowsy man.    -King John"
this[34]  = "Had I no eyes but ears, my ears would love that inward beauty and invisible, or were I deaf, they outward parts would move each part in me that were but sensible.    -Venus and Adonis"
this[35]  = "So full of artless jealousy is guilt, It spills itself in fearing to be spilt.    -Hamlet"
this[36]  = "Beauty provoketh thieves sooner than gold.    -As You Like It"
this[37]  = "We know what we are, but know not what we may be.   -Hamlet"
this[38]  = "But love is blind, and lovers cannot see the pretty follies that themselves commit.    -The Merchant of Venice."
this[39]  = "You may as well say, that 's a valiant flea that dare eat his breakfast on the lip of a lion.    -King Henry V"
this[40]  = "I must be cruel, only to be kind: thus bad begins, and worse remains behind.    -Hamlet"
this[41]  = "There is some soul of goodness in things evil, would men observingly distil it out.    -King Henry V"
this[42]  = "When sorrows come, they come not single spies, but in battalions.   -Hamlet"
this[43]  = "Beware of entrance to a quarrel; but being in, bear't that the opposed may beware of thee. Give every man they ear, but few thy voice; take each man's censure, but reserve thy judgment. Costly they havit as they purse can buy, but not express'd in fancy; rich, not gaudy; for the apparel oft proclaims the man.    -Hamlet"
this[44]  = "Love sought is good, but given unsought is better.    -Twelfth Night"
this[45]  = "Had all his hairs been lives, my great revenge had stomach for them all. -Othello"
this[46]  = "When fortune means to men most good, she looks upon them with a threatening eye.    -King John"

                                 }
var quotes = new initArray();
var poems = 1
var today = new Date();
var day = today.getDate();
var month = today.getMonth();
var myNum = ( month * 30 ) + day;
var numQuotes = 47;

myNum = myNum*myNum
while ( myNum > numQuotes ) {
	myNum = myNum - numQuotes;
}

while(poems > 0)   {
document.write("<I><EM>"+ quotes[myNum] +"</EM></I>");

poems = poems -1;  

                  }
