	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.
	
	randhtml = new makeArray(5);
	
randhtml[0] = "<p class='book_title'>The Thirty-Nine Steps</p><p>John Buchan</p><div id='favourites-jacketandprice'><div id='favourites-jacketimage'><img src='http://www.penguinclassics.ca/static/covers/all/7/7/9780141441177S.gif' width='65' alt='' class='jacketimage' /></div><div id='favourites-purchase'><p class='favouritesprice'>$7.99</p><p style='margin: 5px 0 10px 0;'>&nbsp;</p><span class='buttons'><a href='http://www.penguin.ca/nf/Ecommerce/ShoppingCart/1,,9780141441177,00.html' title='Buy now' target='_parent'><span>Buy now</span></a></span></div></div><p style='clear: both; margin: 0; padding: 0;'></p><p class='favouritesquote'>Still the master at telling a simple story, so it's 'unputdownable'; the sort of book that even snobby critics have to admit is a good read.</p><p style='clear: both; margin: 10px 0 0 0; padding: 0;'></p><p><a href='javascript:location.reload(true);' class='bodylink'>&raquo; More Classic Favourites</a></p>"


randhtml[1] = "<p class='book_title'>Pnin</p><p>Vladimir Nabokov</p><div id='favourites-jacketandprice'><div id='favourites-jacketimage'><img src='http://www.penguinclassics.ca/static/covers/all/6/5/9780141183756L.jpg' width='65' alt='' class='jacketimage' /></div><div id='favourites-purchase'><p class='favouritesprice'>$8.99</p><p style='margin: 5px 0 10px 0;'>&nbsp;</p><span class='buttons'><a href='http://www.penguin.ca/nf/Ecommerce/ShoppingCart/1,,9780141183756,00.html' title='Buy now' target='_parent'><span>Buy now</span></a></span></div></div><p style='clear: both; margin: 0; padding: 0;'></p><p class='favouritesquote'>A gorgeous, hilarious, humane book that uncovers the reality of a man's life in sly, piecemeal fashion. I think it's my favourite novel.</p><p style='clear: both; margin: 10px 0 0 0; padding: 0;'><p><a href='javascript:location.reload(true);' class='bodylink'>&raquo; More Classic Favourites</a></p>"


randhtml[2] = "<p class='book_title'>The Iliad</p><p>Homer</p><div id='favourites-jacketandprice'><div id='favourites-jacketimage'><img src='http://www.penguinclassics.ca/static/covers/all/1/4/9780140447941L.jpg' width='65' alt='' class='jacketimage' /></div><div id='favourites-purchase'><p class='favouritesprice'>$8.99</p><p style='margin: 5px 0 10px 0;'>&nbsp;</p><span class='buttons'><a href='http://www.penguin.ca/nf/Ecommerce/ShoppingCart/1,,9780140447941,00.html' title='Buy now' target='_parent'><span>Buy now</span></a></span></div></div><p style='clear: both; margin: 0; padding: 0;'></p><p class='favouritesquote'>The Iliad is amongst my favourite books.  Not, I hasted to add, in the original Greek, but in the Penguin modern translations.</p><p style='clear: both; margin: 10px 0 0 0; padding: 0;'></p><p><a href='javascript:location.reload(true);' class='bodylink'>&raquo; More Classic Favourites</a></p>"


randhtml[3] = "<p class='book_title'>Pride and Prejudice</p><p>Jane Austen</p><div id='favourites-jacketandprice'><div id='favourites-jacketimage'><img src='http://www.penguinclassics.ca/static/covers/all/8/1/9780141439518L.jpg' width='65' alt='' class='jacketimage' /></div><div id='favourites-purchase'><p class='favouritesprice'>$5.99</p><p style='margin: 5px 0 10px 0;'>&nbsp;</p><span class='buttons'><a href='http://www.penguin.ca/nf/Ecommerce/ShoppingCart/1,,9780141439518,00.html' title='Buy now' target='_parent'><span>Buy now</span></a></span></div></div><p style='clear: both; margin: 0; padding: 0;'></p><p class='favouritesquote'>An incredibly funny, very upmarket love story with an enchanting heroine and the perfect romantic hero: a tartar with a heart of gold.</p><p style='clear: both; margin: 10px 0 0 0; padding: 0;'><p><a href='javascript:location.reload(true);' class='bodylink'>&raquo; More Classic Favourites</a></p>"

randhtml[4] = "<p class='book_title'>War and Peace</p><p>Leo Tolstoy</p><div id='favourites-jacketandprice' style='height: 105px;'><div id='favourites-jacketimage'><img src='http://www.penguinclassics.ca/static/covers/all/4/3/9780140447934L.jpg' width='65' alt='' class='jacketimage' /></div><div id='favourites-purchase'><p class='favouritesprice'>$10.99</p><p style='margin: 5px 0 10px 0;'>&nbsp;</p><span class='buttons'><a href='http://www.penguin.ca/nf/Ecommerce/ShoppingCart/1,,9780140447934,00.html' title='Buy now' target='_parent'><span>Buy now</span></a></span></div></div><p style='clear: both; margin: 0; padding: 0;'></p><p class='favouritesquote'>When Hillary reached the top of Everest, I believe he said to Tenzing, 'We knocked the bastard off.' I remember saying much the same when I finished War and Peace.</p><p style='clear: both; margin: 10px 0 0 0; padding: 0;'></p><p><a href='javascript:location.reload(true);' class='bodylink'>&raquo; More Classic Favourites</a></p>"

	// The random number generator.



	function rand(n) {

	seed = (0x015a4e35 * seed) % 0x7fffffff;

	return (seed >> 16) % n;

	}

	var now = new Date()
	var seed = now.getTime() % 0xffffffff