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",
"Italiano",
"About Us",
"Contact",
"Custom Tours",
"Scheduled Tours",
"Personalized Travel",
"Conferences",
"Incentive Holidays",
"Site Index");

var urls = new makeArray("",
"it.htm",
"aboutus.htm",
"contact.htm",
"custom.htm",
"tours.htm",
"personal.htm",
"meetings.htm", 
"incentives.htm",
"siteindex.htm");

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}
