// Array Function

function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

// This array holds the descriptions and names of the pages.

var pages = new makeArray("Select a Page",
	"",
	"Home",
	"New?",
	"Worship",
	"Services",
	"----------",
	"Enquiries",
	"Weekly events",
	"Special events",
	"Weekly leaflet",
	"Church tour",
	"Church year",
	"----------",
	"St Peter's",
	"About us",
	"Contact us",
	"Magazine Articles",
	"Mike&#x27;s Journal",
	"Links");

// This array hold the URLs of the pages.

var urls = new makeArray("#",
	"#",
	"index.html",
	"newcomer.html",
 	"worship.html",
 	"services.html",
  	"#",
	"enquiry.html",
	"weekly.html",
	"special.html",
	"leaflet.html",
	"tour.html",
	"year.html",
	"#",
	"stpeters.html",
	"about.html",
	"contact.html",
	"articles.html",
	"journal/index.htm",
 	"links.html");

// This function determines which page is selected and goes to it.

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}

//-->
<!--Script from http://www.a1javascripts.com/-->