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("- - - - - SITE MAP - - - - -",
                            "HOME",
                                    "About Us",
                                    "Welcome Page",
                                    "Board of Directors",
                                        "____________________________",
                                    "CUSTOMER SERVICES",
                                        "Conditions of Service - Revised",
                                        "Summary of Changes to Conditions Of Service",
                                    "Market Deregulation",
                                    "Rate Information",
                                    "How to Read Your Meter",
                                    "Payment Options",
                                        "Payment Authorization Form",
                                    "Contact Us",
                                    "News and Updates",
                                        "Privacy Policy",
                                    "____________________________",
                                    "YOUR HYDRO",
                    "Safety Tips for the Home",
                                    "Electrical Inspection",
                                        "Energy Conservation Programs",
                                    "Power Conservation Tips",
                                    "Appliance Power Use Chart",
                                    "Ground Fault Circuit Interrupter",
                                    "Protect Your Computer",
                                    "____________________________",
                                    "THE LEARNING PAGES",
                                    "Where Electricity Comes From",
                                    "How You Can Help our Environment",
                                    "Safety Tips",
                                        "Conservation Quiz");

var url = new MakeArray(" ",
                                "index.html",
                                "/html/about.php",
                                "welcome.htm",
                                "/html/board.php",
                                "",
                                "services.htm",
                                "pdf/conditions_of_service.pdf",
                                "summary_changes.htm",
                                "dereg.htm",
                                "rates.htm",
                                "meter.htm",
                                "payment.htm",
                                "pap_form.html",
                                "communicate.htm",
                                "news.htm",
                                "privacy.html",
                                "",
                                "hydro.htm",
                        "safety.htm",
                                        "inspect.htm",
                                        "conserve.htm",
                        "savepower.htm",
                        "appliance.htm",
                                        "gfci.htm",
                        "compute.htm",
                                "",
                                "learn.htm",
                                        "generator.htm",
                                        "environment.htm",
                        "kidssafety.htm",
                                        "quiz.htm");



function jumpPage(form) {
                i = form.SelectMenu.selectedIndex;
        if (i == 0) return;
        window.location.href = url[i+1];
}
