
	function MakeArray()
    {
    this.length = MakeArray.arguments.length
    for (var i = 0; i < this.length; i++)
    this[i+1] = MakeArray.arguments[i]
    }
    
    var siteopt2 = 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 url2 = new MakeArray("/home.htm",
							"/finance/finintro.htm",
                            "/legal/legalintro.htm",
						    "/care/careintro.htm",
				            "/end_of_life/yourway/yourwayintro.htm",
                            "/protect/protectintro.htm",
							"/benefits/benefitsintro.htm",
							"/services/servicesintro.htm",
							"/services/classintro.htm",
							"/publications/pubsintro.htm",
							"/donation_form.htm",
							"/about/aboutintro.htm",
							"/about/contactus.htm",
							"/press/pressintro.htm",
							"/more/moreintro.htm",
							"/about/questions.htm");

	function jumpPage2(form) {
    i = form.SelectMenu2.selectedIndex;
    window.location.href = url2[i+1];
    }
