
// this is a simple script to place a feature box on to the the index page:
// tour features

var tourfeature = new Array();

tourfeature[0]='<a href="/tours/search_results.php?location=Z1"><h2> Sydney Helitours </h2><img src="images/features/sydneyhelitours.jpg" alt="Sydney Helitours" width="180" height="118" border="0"   /><p><strong>Book</strong> Discover Sydney from a whole new perspective.Breathtaking aerial views await you as fly over the Sydney Opera House ... </p></a>  ';
tourfeature[1]='<a href="/tours/search_results.php?location=Z1"><h2> Harbour Bridge Climb</h2><img src="images/features/bridgeclimb.jpg" alt="Harbourn Bridge Climb" width="180" height="118" border="0"   />  <p><strong>Book</strong>  The most memorable experience Sydney can offer ... a climb to the top of the world famous Sydney Harbour Bridge. </p></a>  ';
tourfeature[2]='<a href="/tours/Melbourne-City-and-Surrounds-cruises-sightseeing-Z2.html"><h2> Melbourne Balloons</h2><img src="images/features/melbourneballoon.jpg" alt="Melbourne Balloon Flight" width="180" height="118" border="0"   /><p><strong>Book</strong> A sunrise balloon flight over Melbourne is a truly remarkable experience. Let the wind show you this remarkable city from the air ... </p></a>';
tourfeature[3]='<a href="/tours/Ayers-Rock-Uluru-cruises-sightseeing-L1332.html"><h2> Cave Hill - Ayers Rock </h2><img src="images/features/uluru.jpg" alt="Cave Hill Safari -  Ayers Rock" width="180" height="118" border="0"   /><p><strong>Book</strong> Travel from Uluru through the Central Australian Desert in a custom built four-wheel drive</p></a>  ';
tourfeature[4]='<a href="/tours/Northern-Territory-cruises-sightseeing-SNT.html"><h2>Litchfield Waterfalls</h2><img src="images/features/croc.jpg" alt="Jumping Crocs &amp; Litchfield Waterfalls" width="180" height="118" border="0"   /> <p><strong>Book</strong>  Join the famous Adelaide River Jumping Crocodile Cruise and see these prehistoric creatures at close range.</p></a>  ';
var num = 0;
var num2 = 0;
var max = tourfeature.length -1 ;

num = Math.floor((Math.random() * max));
//num2 =  Math.floor((Math.random() * max));
//if (num == num2) {
//	while (num2 == num1) { 	num2 =  Math.floor((Math.random() * max)); }
//}
document.write(tourfeature[num]);







