 <!-- this following is the menu.js information to make the index drop box-->

function MakeArray()
{
this.length = MakeArray.arguments.length
for (var i = 0; i < this.length; i++)
this [i+1] = MakeArray.arguments[i]
}
<!--listing of what shows in the drop menu-->
var siteopt = new MakeArray
("Index of Pages on The Evangelical Orthodox Catholic Church in America Web Site",
 "Introduction to the Jurisdiction",
 "The Table of Contents",
 "Prime Bishop's Welcoming Message",
 "Intercommunion vs Communion",
 "Vision of the Church",
 "Faith and Doctrines of the Church",
 "Ordination of Women",
 "Episcopacy and Apostolic Succession",
 "The Oral Tradition of the Church and SOLA SCRIPTURA",
 "General Information on the Seminary",
 "Seminary Program and Catalog",
 "Making the Sign of the Cross",
 "Christ in the Holy Eucharist",
 "Who Are We",
 "Jurisdictional History",
 "Archbishop Carfora",
 "Archbishop Mathew",
 "Archbishop Pyman",
 "Archbishop Polivka",
 "Archbishop Fehevrary",
 "+Pyman appointed 1st Regionary Bishop",
 "The Formation of the Evangelical Orthodox Catholic Church",
 "The Joining of Two Churches Document",
 "Full Eastern Rite Faculties for +Sills",
 "Recognition-Communion Document",
 "Protocol of Election of +Sills",
 "Order of Christ",
 "Apostolic Succession",
 "Meaning of Faith",
 "We Believe God's Word...We Act Like It?",
 "Stop trying to feel God",
 "Understanding of the Holy Eucharist",
 "Kingdom of God is at hand",
 "Paitence and Positive Confession",
 "Review of faith, sacraments, and prayer",
 "Chrismation -- What is it and What it means",
 "Legal Relationship between the Church and its members",
 "Prime Bishop Sills",
 "The Bookstore");

<!--listing of the html in the same order as the indes wording-->
var url = new MakeArray
("",
 "welcome.html",
 "toc.html",
 "perry.html",
 "intercom.html",
 "vision.html",
 "beliefs.html",
 "ordwomen.html",
 "episcop.html",
 "teach_14.html",
 "seminary.html",
 "catalog.html",
 "signcros.html",
 "commun.html",
 "orthcath.html",
 "diochst.html",
 "carfora.html",
 "mathew.html",
 "pyman.html",
 "johnp.html",
 "fehev.html",
 "naorcc.html",
 "eocca.html",
 "eoch.html",
 "archprst.html",
 "offcomm.html",
 "protoel.html",
 "kooc.html",
 "aposuc.html",
 "teach_11.html",
 "teach_01.html",
 "teach_03.html",
 "teach_05.html",
 "teach_06.html",
 "teach_08.html",
 "teach_12.html",
 "teach_13.html",
 "Legal Relationship Between Church and Members.html",
 "sills.html",
 "bkstore.html");
 

<!--instructions to make the window box and to jump to the page-->
function jumpPage (form)
{
i = form.SelectMenu.selectedIndex;
if (i == 0) return;
window.location.href = url [i+1];
}
document.writeln('<form><select name="SelectMenu" onChange="jumpPage (this.form)">')
tot = siteopt.length;
	for (var i = 1; i <= tot; i++)
	document.write ("<option>" +siteopt [i]);
document.writeln ('</select>');
if (navigator.userAgent.indexOf ("Mozilla/2") != -1)
document.writeln ('<input type = button value = "Jump!">');
document.writeln ('</form>');

