function rand ( n ) { return ( Math.floor ( Math.random ( ) * n + 1 ) ); } // Store some random quotations var random_quotes = new Array ( ); random_quotes[0] = 'TrueStory Image Kanga Birtels

Single handed sailor Kanga Birtles talks about the wildlife

'; random_quotes[1] = 'TrueStory Image David Morris

David Morris shows his grandchildren how to sharpen chisels

'; random_quotes[2] = 'TrueStory Image Rick Riddle

Rick Riddle ends 44 years as a teacher

'; random_quotes[3] = 'TrueStory Image Reg Lee

Australian Reg Lee is shocked by what he sees in South Africa

'; random_quotes[4] = 'TrueStory Image Roy Hammond

Roy Hammond spent the first years of his life in a Jap POW camp

'; random_quotes[5] = 'TrueStory Image Katy Stenning

How Katy Stenning survived WW2

'; var random_offer = new Array ( ); random_offer[0] = 'TrueStory Image Life Story

Your life story in a 250 page book

'; random_offer[1] = 'TrueStory Image Certificate

It all starts with a gift certificate

'; random_offer[2] = 'TrueStory Image Life Story

Your life story in a 250 page book

'; random_offer[3] = 'TrueStory Image Certificate

It all starts with a gift certificate

'; // Pick a random quote from the list, // and set the 'random-quote' paragraph content to that quote function pick_quote ( ) { document.getElementById("random-quote").innerHTML = random_quotes[rand(4)-1]; document.getElementById("random-offer").innerHTML = random_offer[rand(4)-1]; }