function makeArray(len) {		for (var i = 0; i < len; i++) this[i] = null;		this.length = len;	}	// This is where the array of text/images/sounds is created.		randimg = new makeArray(25);	randimg[0] = "<img src='images/quoteoftheday/quote00.gif' width='360' alt='‘My mouth shall be the Parliament of England’ - Henry VI, Part II'>"	randimg[1] = "<img src='images/quoteoftheday/quote01.gif' width='360' alt='‘He was not of an age, but for all time!’ - Ben Jonson'>"	randimg[2] = "<img src='images/quoteoftheday/quote02.gif' width='360' alt='‘Shakespeare was the greatest humanist who has ever lived’ - Trevor Nunn'>"	randimg[3] = "<img src='images/quoteoftheday/quote03.gif' width='360' alt='‘If we wish to know the force of human genius we should read Shakespeare’ - William Hazlitt'>"	randimg[4] = "<img src='images/quoteoftheday/quote04.gif' width='360' alt='‘As long as love, power, fear and jealousy remain strong human experiences, Shakespeare’s plays will be startlingly modern and relevant’ - Sir Anthony Sher'>"	randimg[5] = "<img src='images/quoteoftheday/quote05.gif' width='360' alt='‘Shakespeare ­ the nearest thing in incarnation to the eye of God’ - Laurence Olivier '>"	randimg[6] = "<img src='images/quoteoftheday/quote06.gif' width='360' alt='‘The man who of all modern, and perhaps ancient poets, had the largest and most comprehensive soul’ - John Dryden'>"	randimg[7] = "<img src='images/quoteoftheday/quote07.gif' width='360' alt='‘He could mingle sublimity with pathos, bitterness with joy and peace and love’ - Aldous Huxley'>"	randimg[8] = "<img src='images/quoteoftheday/quote08.gif' width='360' alt='‘Romeo was your first “rebel without a cause”’ - Baz Luhrmann '>"	randimg[9] = "<img src='images/quoteoftheday/quote09.gif' width='360' alt='‘No writer, before or since, has so deeply understood the human condition’ - John Mortimer '>"	randimg[10] = "<img src='images/quoteoftheday/quote10.gif' width='360' alt='‘To-morrow, and to-morrow, and to-morrow,  Creeps in this petty pace from day to day, To the last syllable of recorded time’ - Macbeth'>"	randimg[11] = "<img src='images/quoteoftheday/quote11.gif' width='360' alt='‘All the world's a stage, And all the men and women merely players’ - As You Like It'>"	randimg[12] = "<img src='images/quoteoftheday/quote12.gif' width='360' alt='‘What a piece of work is man! How noble in reason! How infinite in faculties! In form and moving, how express and admirable! In action how like an angel! In apprehension, how like a god!’ - Hamlet'>"	randimg[13] = "<img src='images/quoteoftheday/quote13.gif' width='360' alt='‘A horse! A horse! My kingdom for a horse!’ - Richard III'>"	randimg[14] = "<img src='images/quoteoftheday/quote14.gif' width='360' alt='‘What's in a name? That which we call a rose, By any other word would smell as sweet’ - Romeo and Juliet'>"	randimg[15] = "<img src='images/quoteoftheday/quote15.gif' width='360' alt='‘If music be the food of love, play on; Give me excess of it, that, surfeiting, The appetite may sicken, and so die’ - Twelfth Night'>"	randimg[16] = "<img src='images/quoteoftheday/quote16.gif' width='360' alt='‘Love looks not with the eyes but with the mind’ - A Midsummer Night’s Dream'>"	randimg[17] = "<img src='images/quoteoftheday/quote17.gif' width='360' alt='‘How sharper than a serpent's tooth it is, To have a thankless child!’ - King Lear'>"	randimg[18] = "<img src='images/quoteoftheday/quote18.gif' width='360' alt='‘All the courses of my life do show, I am not in the roll of common men - Henry IV Part I'>"	randimg[19] = "<img src='images/quoteoftheday/quote19.gif' width='360' alt='‘Eternity was in our lips and eyes, Bliss in our brows’ bent’ - Antony and Cleopatra'>"	randimg[20] = "<img src='images/quoteoftheday/quote20.gif' width='360' alt='‘Look to her, Moor, if thou hast eyes to see. She has deceived her father, and may thee’ - Othello'>"	randimg[21] = "<img src='images/quoteoftheday/quote21.gif' width='360' alt='‘Thou call’dst me dog before thou hadst a cause, But since I am a dog, beware my fangs’ - The Merchant of Venice'>"	randimg[22] = "<img src='images/quoteoftheday/quote22.gif' width='360' alt='‘Between the acting of a dreadful thing, And the first motion, all the interim is, Like a phantasma or a hideous dream’ - Julius Caesar'>"	randimg[23] = "<img src='images/quoteoftheday/quote23.gif' width='360' alt='‘Lovers and madmen have such seething brains, Such shaping fantasies, that apprehend, More than cool reason ever comprehends’ - A Midsummer Night’s Dream'>"	randimg[24] = "<img src='images/quoteoftheday/quote24.gif' width='360' alt='‘There are more things in heaven and earth, Horatio, Than are dreamt of in your philosophy’ - Hamlet'>"		// The random number generator.	function rand(n) {	seed = (0x015a4e35 * seed) % 0x7fffffff;	return (seed >> 16) % n;	}	var now = new Date()	var seed = now.getTime() % 0xffffffff
