// this is a simple script to place a feature box on to the the index page: 
// city features:

var cityfeature = new Array();

cityfeature[0]='<h2>Sydney</h2> <a href="accommodation/search_results_super.php?location=Z1"><img src="images/features/sydneyharbour.jpg" alt="Beautiful Sydney Harbour" width="180" height="118" border="0" /></a> <p><a href="accommodation/search_results_super.php?location=Z1">Check out</a> all the hottest deals in Sydney, one of the world\'s most beautiful cities: sophisticated, friendly and more ... </p> ';
cityfeature[1]='<h2>Melbourne</h2> <a href="accommodation/search_results.php?location=R71"><img src="images/features/melbourne.jpg" alt="Strange Fruit - a unique performance that combines dance, circus and spectacular costumes" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=R71">Check out</a> all the hottest deals in Melbourne where the atmosphere is electric as fashion and festival fever take over ... </p>';
cityfeature[2]='<h2>Brisbane</h2> <a href="accommodation/search_results.php?location=Z5"><img src="images/features/brisbane.jpg" alt="Brisbane" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=Z5">Check out</a> all the hottest deals in Brisbane famous for its great weather, exciting events and cultural scene ... </p>';
cityfeature[3]='<h2>Perth</h2> <a href="accommodation/search_results.php?location=Z3"><img src="images/features/perth.jpg" alt="Perth" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=Z3">Check out</a> all the hottest deals in Perth one of the most beautiful cities in the world with a </b> charming and relaxed atmosphere ... </p>';
cityfeature[4]='<h2>Cairns</h2> <a href="accommodation/search_results.php?location=R43"><img src="images/features/cairns.jpg" alt="Cairns" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=R43">Check out</a> all the hottest deals in Cairns a gateway to the Tropical North close to the Great Barrier Reef and dense rainforests ... </p>';
cityfeature[5]='<h2>Darwin</h2> <a href="accommodation/search_results.php?location=T413"><img src="images/features/darwin.jpg" alt="The famous Darwin Markets" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=T413">Check out</a> all the hottest deals in Darwin with its relaxed tropical lifestyle,  culture and great base for visits to amazing Kakadu National Park... </p>';
cityfeature[6]='<h2>Hobart</h2> <a href="accommodation/search_results.php?location=T619"><img src="images/features/hobart.jpg" alt="The port of Hobart" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=T619">Check out</a> all the hottest deals in Hobart  nestling between majestic Mt Wellington and the Derwent Estuary ... </p>';
cityfeature[7]='<h2>Adelaide</h2> <a href="accommodation/search_results.php?location=Z4"><img src="images/features/adelaide.jpg" alt="Adelaide" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=Z4">Check out</a> all the hottest deals in Adelaide a city of churches, festivals, food and wine... </p>';
cityfeature[8]='<h2>Canberra</h2> <a href="accommodation/search_results.php?location=R108"><img src="images/features/canberra.jpg" alt="Canberra\'s Floriade an awesome festival of flora" width="180" height="118" border="0"   /></a> <p><a href="accommodation/search_results.php?location=R108">Check out</a> all the hottest deals in Canberra the national capital and home to galleries museums and architecture ... </p>';

var max = cityfeature.length;
var num = Math.floor((Math.random() * max));
document.write(cityfeature[num]);