


var quotes = new Array(1);
var books = new Array(1);

quotes[0] = "Throughout my young days at school and just afterwards, a number of things happened to me that I have never forgotten... each of them has made such a tremendous impression on me that I have never been able to get them out of my mind. Some are funny. Some are painful. Some are unpleasant. I suppose that is why I have always remembered them so vividly. All are true.";
books[0] = "Roald Dahl<br /> - Boy - Tales of Childhood.";







//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);
}






