	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.

items = new makeArray(3);
	items[0] = "<div id=maincontain><div id=main><p><h4><a href=/heaven>Bringing Heaven Down to Earth: <br />Connecting This Life to the Next</a></h4></p><div id=blurb><p class=initial>This book takes a new look at what the Bible says heaven will actually be like, and what difference it makes for our daily life.</div></div><div id=mainright><a href=/heaven><img src=http://www.nbierma.com/sand/cover_275.jpg width=168 height=271 border=1 /></a></div><div style=clear:both;></div><div id=next>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<script type=text/javascript src=/main/next1.js></script><noscript>&nbsp;</noscript></div></div>";
	items[1] = "<div id=maincontain><div id=main><p><h4><a href=/eclectic>The Eclectic Encyclopedia of English</a></h4></p><div id=blurb><p class=initial>This book collects musings, observations, and opinions on the ever-evolving English language from A to Z, from my \"On Language\" <a href=/language/column>column</a> in the <em>Chicago Tribune</em>.</div></div><div id=mainright><a href=/eclectic><img src=/language/eclectic/images/cover_oct_150.jpg border=0></a></div><div style=clear:both;></div><div id=next><script type=text/javascript src=/main/next2.js></script><noscript>&nbsp;</noscript></div></div>";
	items[2] = "<div id=maincontain><div id=main><p><a href=/chicago>Chicago Album</a><div id=blurb><p class=initial>View my pictures from the three years I lived in one of the greatest cities in the world.</div></div><div id=mainright><a href=/chicago><img src=/images/311swacker.jpg border=0></a></div><div style=clear:both;></div><div id=next><script type=text/javascript src=/main/next3.js></script><noscript>&nbsp;</noscript></div></div>";
				
	// The random number generator.

	function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
	}
        
	var now = new Date()
	var seed = now.getTime() % 0xffffffff

	
	// Where you place this is where the random object will be displayed.

	document.write(items[rand(items.length)])	
