var properties = new Array();
	properties["url"] = new Array();
	properties["name"] = new Array();

function psh(a, v) {
	a[a.length] = v;
}

function newp(u, n) {
	psh(properties["url"], u);
	psh(properties["name"], n);
}

/***** BEGIN TOUR LIST *****/

newp("0", "Tour Quick Selector");

newp("0", "---------");
newp("kuranda.html", "KURANDA");
newp("krst.html", "Kuranda all Inclusive (KRST)");
newp("kqst.html", "Kuranda, Rail, Skyrail & Tjapukai (KQST)");
newp("krps.html", "Kuranda, Rail, Rainforestation & Skyrail (KRPS)");
newp("khc.html", "Kuranda, Rail, Skyrail & Hartley’s Crocodile Adventures (KHC)");
newp("kqs.html", "Kuranda, Rail & Skyrail (KQS)");
newp("ksq.html", "Kuranda, Skyrail & Rail (KSQ)");
newp("kww.html", "Kuranda, Rail, Skyrail & Cairns Tropical Zoo (KWW)");
newp("kqbss.html", "Kuranda, Rail, Skyrail & Blazing Saddles (KQBSS)");
newp("krr.html", "Kuranda, Coach & Rail (KRR)");
newp("kcs.html", "Kuranda, Coach & Skyrail (KCS)");
newp("0", "---------");
newp("cape-tribulation-tours.html", "CAPE TRIBULATION & DAINTREE");
newp("dwa.html", "Daintree Walkabout (DWA)");
newp("ctr.html", "Cape Tribulation, Daintree & Mossman Gorge (CTR)");
newp("ctba.html", "Cape Tribulation By Appointment (CTBA)");
newp("0", "---------");
newp("4wdtouring.html", "4WD TOURING");
newp("ctr.html", "Cape Tribulation, Daintree & Mossman Gorge (CTR)");
newp("itbc.html", "Cape Tribulation Wilderness Safari (ITBC)");
newp("0", "---------");
newp("tablelands.html", "THE TABLELANDS");
newp("ats.html", "Tablelands, Waterfalls & Spanish Castles (ATS)");
newp("0", "---------");
newp("wildlife.html", "WILDLIFE ENCOUNTERS");
newp("hcpm.html", "Hartley’s Crocodile Adventures (HCPM)");
newp("krps.html", "Kuranda Rail, Rainforestation & Skyrail (KRPS)");
newp("khc.html", "Kuranda Rail, Skyrail & Hartley’s Crocodile Adventures (KHC)");

newp("0", "---------");
newp("packages.html", "PACKAGES");
newp("platpkg.html", "The Platinum Package (PLATPKG)");
newp("0", "---------");
newp("byappointment.html", "BY APPOINTMENT");
newp("0", "---------");
newp("traveller.html", "THE TRAVELLER");
newp("0", "");


/***** END TOUR LIST *****/

html = "<select name=\"products\" onChange=\"clickto(this.form)\" size=\"1\" class=\"tours\">\n";
html += " <option value=\"" + properties["url"][0] + "\" selected>" + properties["name"][0] + "</option>\n";
for (i = 1; i < properties["url"].length; i++) {
	html += " <option value=\"" + properties["url"][i] + "\">" + properties["name"][i] + "</option>\n";
}
html += "</select>\n";

document.write(html);