	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(2);

	randhtml[0] = "<table width='270' height='308' border='0' cellspacing='0' cellpadding='0' class='sidebarcelebrate'><tr><td colspan='3'><img src='images/spacer.gif' alt='' width='1' height='7' border='0'></td></tr><tr><td><img src='images/spacer.gif' alt='' width='7' height='1' border='0'></td><td valign='top' align='left' width='253' background='images/sidebar_picbk_celebrating.gif'><img src='images/sidebar_title_celebrating.gif' alt='' width='253' height='29' border='0' style='margin-bottom: 10px;'><br><EMBED SRC='images/flash/side_celebrating.swf' quality=high WIDTH=235 HEIGHT=148 TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' style='margin-left:9px; margin-top:11px;'></EMBED><br><a href='celebrating.html'  target='_top'><img src='images/sidebar_more_celebrating.gif' alt='Find out more' width='136' height='19' border='0' style='float: left; margin-left:9px; margin-top:13px; margin-right:61px;' name='celebratemore'></a><img src='images/sidebar_star_celebrating.gif' alt='' width='36' height='41' border='0' style='margin-top:7px;'></td><td><img src='images/spacer.gif' alt='' width='7' height='295' border='0'></td></tr></table>"

	randhtml[1] = "<table width='270' height='308' border='0' cellspacing='0' cellpadding='0' class='sidebarifyoulike'><tr><td colspan='3'><img src='images/spacer.gif' alt='' width='1' height='7' border='0'></td></tr><tr><td><img src='images/spacer.gif' alt='' width='7' height='1' border='0'></td><td valign='top' align='left' width='253' background='images/sidebar_picbk_ifyoulike.gif' class='sidebarifyouliketxt'><img src='images/sidebar_title_ifyoulike.gif' alt='' width='253' height='29' border='0' style='margin-bottom: 10px;'><br><img src='images/ifyoulike_maigret_jktsm.jpg' alt='' width='83' height='132' border='0' style='margin-right: 10px; float: right;'><p style='margin-left: 9px;'><strong>If you read ...</strong><br>Patricia Cornwell<br><img src='images/spacer.gif' alt='' width='1' height='5' border='0'><br><strong>You should try this ...</strong><br>My Friend Maigret<br>Georges Simenon<br><img src='images/spacer.gif' alt='' width='1' height='10' border='0'><br><a href='http://www.penguinclassics.co.uk/nf/Book/BookDisplay/0,,9780141025865,00.html' target='_blank' class='ifyouliketxtlink'>Read more</a><br></p><a href='ifyoulike.html' target='_top'><img src='images/sidebar_more_ifyoulike.gif' alt='More reccomendations' name='celebratemore' id='celebratemore' width='193' height='21' border='0' style='float: left; margin-left:8px; margin-top:2px; margin-right:7px;'></a><img src='images/sidebar_star_ifyoulike.gif' alt='' width='36' height='41' border='0' style='float: right; margin-top:1px; margin-right: 8px;'></td><td><img src='images/spacer.gif' alt='' width='7' height='300' border='0'></td></tr></table>"



	// The random number generator.



	function rand(n) {

	seed = (0x015a4e35 * seed) % 0x7fffffff;

	return (seed >> 16) % n;

	}

	var now = new Date()
	var seed = now.getTime() % 0xffffffff
