// Jump to menu array function for History subdirectory

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 jump pages.

var pages = new makeArray("Jump to...",
                          "Home",
                          "The Contest",
                          "History Home",
                          "- The 70s",
                          "- The 80s",
                          "- The 90s",
			  "- The 00s",
			  "- The 10s",
                          "Other Teams",
                          "Trivia Links",
                          "FAQ",
                          "The Oz Site",
                          "Champs '99",
                          "Champs '00",
                          "Point Cup",
                          "Who is Bud?",
                          "Site Map");

// This array hold the URLs of the jump pages.

var urls = new makeArray("",
                         "../index.htm",
                         "../contest.htm",
                         "index.htm",
                         "70s.htm",
                         "80s.htm",
                         "90s.htm",
			 "00s.htm",
			 "10s.htm",
                         "../others.htm",
                         "../links.htm",
                         "../faq.htm",
                         "http://www.momsfamilies.com/trivia",
                         "../99champs.htm",
                         "../00champs.htm",
                         "../pointcup.htm",
                         "../whoisbud.htm",
                         "../sitemap.htm");

// This function determines which page is selected and jumps to it.

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}
