// 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",
                          		"Committees",
					"Memorial Grant",
					"Memorial Grant Winners",
                          		"Military Order of Devil Dogs",
					"Our Fallen Members",
                         		"About the League",
                         		"Mission Statement",
                          		"Story of Creation",
					"Pictures",                        
                          		"Marine Corps Birthday",
					"The Wall in Greenville");

// This array hold the URLs of the pages.
var urls = new makeArray("",
                         "http://www.lincolnlandleathernecks.org/index.html",
                         "http://www.lincolnlandleathernecks.org/page1.html",
                         "http://www.lincolnlandleathernecks.org/grant.html",
                         "http://www.lincolnlandleathernecks.org/grant2.html",
                         "http://www.lincolnlandleathernecks.org/page1a.html",
                         "http://www.lincolnlandleathernecks.org/memorial.html",
                         "http://www.lincolnlandleathernecks.org/page2.html",
                         "http://www.lincolnlandleathernecks.org/page3.html",
                         "http://www.lincolnlandleathernecks.org/page4.html",
                         "http://www.lincolnlandleathernecks.org/pictures.html",
                         "http://www.lincolnlandleathernecks.org/page8.html",                   
                         "http://www.lincolnlandleathernecks.org/wall.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];  
    }
}
