// this is a simple script to place a feature box on to the the index page:
// tour features

var tourfeature = new Array();

tourfeature[0]='<h2> Sydney Helitours </h2><a href="tours/brochure.php?opt=SYDTDSHTSYDDAY"><img src="images/features/sydneyhelitours.jpg" alt="Sydney Helitours" width="180" height="118" border="0"   /></a> <p><a href="tours/brochure.php?brochure.php?opt=SYDTDSHTSYDDAY">Book</a> Discover Sydney from a whole new perspective.Breathtaking aerial views await you as fly over the Sydney Opera House ... </p> ';
tourfeature[1]='<h2> Harbour Bridge Climb</h2><a href="tours/brochure.php?opt=SYDTDBRISYDDAYH"><img src="images/features/bridgeclimb.jpg" alt="Adelaide" width="180" height="118" border="0"   /></a> <p><a href="tours/brochure.php?opt=SYDTDBRISYDDAYH">Book</a> The most memorable experience Sydney can offer ... a climb to the top of the world famous Sydney Harbour Bridge. </p> ';
tourfeature[2]='<h2> Melbourne Balloons</h2><a href="tours/brochure.php?opt=MELTDGLOMELDAY"><img src="images/features/melbourneballoon.jpg" alt="Melbourne Balloon Flight" width="180" height="118" border="0"   /></a> <p><a href="tours/brochure.php?opt=MELTDGLOMELDAY">Book </a> A sunrise balloon flight over Melbourne is a truly remarkable experience. Let the wind show you this remarkable city from the air ... </p> ';
//tourfeature[3]='<h2> The Grampians </h2><a href="tours/brochure.php?opt=MELSSAPTMELM39"><img src="images/features/grampians.jpg" alt="Grampians National Park" width="180" height="118" border="0"   /></a> <p><a href="tours/brochure.php?opt=MELSSAPTMELM39">Book </a> Be inspired by the sheer majesty of the Grampians National Park with its rugged cliffs and cascading waterfalls ... </p> ';
tourfeature[3]='<h2> Cave Hill - Ayers Rock </h2><a href="tours/brochure.php?opt=AYQTDVOYAUSDAYA"><img src="images/features/uluru.jpg" alt="Cave Hill Safari -  Ayers Rock" width="180" height="118" border="0"   /></a> <p><a href="tours/brochure.php?opt=AYQTDVOYAUSDAYA">Book </a>Travel from Uluru through the Central Australian Desert in a custom built four-wheel drive</p> ';
tourfeature[4]='<h2>Litchfield Waterfalls</h2><a href="tours/brochure.php?opt=DRWTDTEEDRWDAY"><img src="images/features/croc.jpg" alt="Jumping Crocs &amp; Litchfield Waterfalls" width="180" height="118" border="0"   /></a> <p><a href="tours/brochure.php?opt=DRWTDTEEDRWDAY">Book </a> Join the famous Adelaide River Jumping Crocodile Cruise and see these prehistoric creatures at close range.</p> ';
//tourfeature[6]='<h2> Coorong Wilderness Tour </h2><a href="tours/brochure.php?opt=ADLSSGRLADL570"><img src="images/features/coorong.jpg" alt="Yarra Valley Balloon Flight" width="180" height="118" border="0"   /></a> <p><a href="tours/brochure.php?opt=ADLSSGRLADL570">Book </a> This unique wetlands area where sand dunes meet the mighty Southern Ocean is a haven for wildlife ...  </p>';

var max = tourfeature.length;
var num = Math.floor((Math.random() * max));
document.write(tourfeature[num]);





