
	function MakeArray()
    {
    this.length = MakeArray.arguments.length
    for (var i = 0; i < this.length; i++)
    this[i+1] = MakeArray.arguments[i]
    }
    
    var siteopt = new MakeArray("Home",
								"Financial",
                                "Legal",
                                "Care",
								"End-of-Life",
								"Protection",
								"Government Benefits",
								"Services",
								"--Classes",
								"Publications",
								"Donate",
								"About H.E.L.P.",
								"--Contact Information",
								"--Press",
								"More",
								"Submit a Question");

    var url = new MakeArray("/new/home.htm",
							"/new/finance/finintro.htm",
                            "/new/legal/legalintro.htm",
						    "/new/care/careintro.htm",
				            "/new/end_of_life/yourway/yourwayintro.htm",
                            "/new/protect/protectintro.htm",
							"/new/benefits/benefitsintro.htm",
							"/new/services/servicesintro.htm",
							"/new/services/classintro.htm",
							"/new/publications/pubsintro.htm",
							"/new/donation_form.htm",
							"/new/about/aboutintro.htm",
							"/new/about/contactus.htm",
							"/new/press/pressintro.htm",
							"/new/more/moreintro.htm",
							"/new/about/questions.htm");

	function jumpPage(form) {
    i = form.SelectMenu.selectedIndex;
    if (i == 0) return;
    window.location.href = url[i+1];
    }
