function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

var pages = new makeArray("Find it here.",
"Home - Index",
"Getting Around",
"Palermo Map",
"Maps - Charts",
"Faqs - Safety",
"Palatine Chapel",
"Monreale Abbey",
"Palermo Cathedral",
"Churches",
"Castles",
"Archeology",
"Beaches",
"Gardens",
"Museums",
"Mondello",
"Kalsa",
"Opera Houses",
"Caccamo",
"Segesta",
"Erice",
"Solunto",
"Himera",
"Cefalu",
"Ficuzza",
"Madonie Mts.",
"Wine Region",
"Restaurants",
"Hotels",
"Pastry Bars",
"Shopping",
"Internet - Mobile",
"Street Markets",
"Food",
"Wine",
"Palermo History",
"Timeline",
"Punic Era",
"Roger II",
"Frederick II",
"Faiths", 
"Peoples",
"Links",
"About Us");

var urls = new makeArray("",
"index.htm",
"transport.htm",
"palermomap.htm",
"maps.htm",
"faqs.htm",
"palatine.htm",
"monreale.htm",
"cathedral.htm",
"churches.htm", 
"castles.htm",
"archeo.htm",
"beaches.htm",
"gardens.htm",
"museums.htm",
"mondello.htm",
"kalsa.htm",
"opera.htm",
"caccamo.htm",
"segesta.htm",
"erice.htm",
"solunto.htm",
"himera.htm",
"cefalu.htm",
"ficuzza.htm",
"madonie.htm",
"winecountry.htm",
"restaurants.htm",
"hotels.htm",
"pastry.htm",
"shopping.htm",
"net.htm",
"markets.htm",
"cuisine.htm",
"wines.htm",
"palermo.htm",
"timeline.htm",
"punic.htm",
"roger.htm",
"frederick.htm",
"faiths.htm",
"peoples.htm",
"links.htm",
"aboutus.htm");

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}
