


var quotes = new Array(1);
var books = new Array(1);

quotes[0] = "What shocked the Victorians still repels us today. For it seems there is no place for God in the Darwinian scheme. We are not made in our maker\'s image, and we are not set apart from nature... Personally, I do not feel that biological thought has robbed the world of its meaning. On the contrary. Take a walk in the woods in early summer and contemplate the extraordinary diversity of living forms, three billion years in the making. Religions have their creation myths, but do they have anything to match the story of life on earth?";
books[0] = "Ian McEwan on Darwin. author of  \'Atonement\' and \'Saturday\'.";



//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
function showQuote()
{
	var theQuote = quotes[index];
	document.write(theQuote);
}
function showBook()
{
	var theBook = books[index];
	document.write(theBook);
}






