function rand ( n )
{
return ( Math.floor ( Math.random ( ) * n + 1 ) );
}
// Store some random quotations
var random_quotes = new Array ( );
random_quotes[0] = '
Single handed sailor Kanga Birtles talks about the wildlife
'; random_quotes[1] = '
David Morris shows his grandchildren how to sharpen chisels
'; random_quotes[2] = '
Rick Riddle ends 44 years as a teacher
'; random_quotes[3] = '
Australian Reg Lee is shocked by what he sees in South Africa
'; random_quotes[4] = '
Roy Hammond spent the first years of his life in a Jap POW camp
'; random_quotes[5] = '
How Katy Stenning survived WW2
'; var random_offer = new Array ( ); random_offer[0] = '
Your life story in a 250 page book
'; random_offer[1] = '
It all starts with a gift certificate
'; random_offer[2] = '
Your life story in a 250 page book
'; random_offer[3] = '
';
// 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];
}