function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}

// Store some random quotations
var random_quotes = new Array ( );
random_quotes[0] = '<a href="stories.php?flowertabs=7"><img src="http://www.truestory.com.au/images/right/kanga.jpg" width="180" height="180" alt="TrueStory Image Kanga Birtels" title="TrueStory Image Kanga Birtles" border="0" /></a><p><a href="stories.php?flowertabs=7">Single handed sailor Kanga Birtles talks about the wildlife</a></p>';
random_quotes[1] = '<a href="stories.php?flowertabs=10"><img src="http://www.truestory.com.au/images/right/david.jpg" width="180" height="180" alt="TrueStory Image David Morris" title="TrueStory Image David Morris" border="0" /></a><p><a href="stories.php?flowertabs=10">David Morris shows his grandchildren how to sharpen chisels</a></p>';
random_quotes[2] = '<a href="stories.php?flowertabs=2"><img src="http://www.truestory.com.au/images/right/rick.jpg" width="180" height="180" alt="TrueStory Image Rick Riddle" title="TrueStory Image Rick Riddle" border="0" /></a><p><a href="stories.php?flowertabs=2">Rick Riddle ends 44 years as a teacher</a></p>';
random_quotes[3] = '<a href="stories.php?flowertabs=8"><img src="http://www.truestory.com.au/images/right/reg.jpg" width="180" height="180" alt="TrueStory Image Reg Lee" title="TrueStory Image Reg Lee" border="0" /></a><p><a href="stories.php?flowertabs=8">Australian Reg Lee is shocked by what he sees in South Africa</a></p>';
random_quotes[4] = '<a href="stories.php?flowertabs=11"><img src="http://www.truestory.com.au/images/right/roy.jpg" width="180" height="180" alt="TrueStory Image Roy Hammond" title="TrueStory Image Roy Hammond" border="0" /></a><p><a href="stories.php?flowertabs=11">Roy Hammond spent the first years of his life in a Jap POW camp</a></p>';
random_quotes[5] = '<a href="stories.php?flowertabs=0"><img src="http://www.truestory.com.au/images/right/katy.jpg" width="180" height="180" alt="TrueStory Image Katy Stenning" title="TrueStory Image Katy Stenning" border="0" /></a><p><a href="stories.php?flowertabs=0">How Katy Stenning survived WW2</a></p>';


var random_offer = new Array ( );
random_offer[0] = '<a href="stories.php?flowertabs=8"><img src="http://www.truestory.com.au/images/right/lifeStory.jpg" width="180" height="180" alt="TrueStory Image Life Story" title="TrueStory Image Life Story" border="0" /></a><p><a href="">Your life story in a 250 page book</a></p>';
random_offer[1] = '<a href="process.php"><img src="http://www.truestory.com.au/images/right/certificate.jpg" width="180" height="180" alt="TrueStory Image Certificate" title="TrueStory Image Certificate" border="0" /></a><p><a href="">It all starts with a gift certificate</a></p>';
random_offer[2] = '<a href="stories.php?flowertabs=8"><img src="http://www.truestory.com.au/images/right/lifeStory.jpg" width="180" height="180" alt="TrueStory Image Life Story" title="TrueStory Image Life Story" border="0" /></a><p><a href="">Your life story in a 250 page book</a></p>';
random_offer[3] = '<a href="process.php"><img src="http://www.truestory.com.au/images/right/certificate.jpg" width="180" height="180" alt="TrueStory Image Certificate" title="TrueStory Image Certificate" border="0" /></a><p><a href="">It all starts with a gift certificate</a></p>';

// 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]; 
}
