    var array_text = new Array();
    var array_link = new Array();
array_text[0] = "Scroll Down";
    array_text[1] = "Florida";
    array_text[2] = "Georgia";
    array_text[3] = "Pennsylvania";
    array_text[4] = "Virginia";
  
    array_link[0] = "";
    array_link[1] = "floridahistory.htm";
    array_link[2] = "georgiahistory.htm";
    array_link[3] = "pahistory.htm";
    array_link[4] = "vahistory.htm";
    

    function jump(targ , selObj , restore)
    {
        if (selObj.options[selObj.selectedIndex].value != "")
        {
            eval(targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
            if (restore)
                selObj.selectedIndex = 0;
        }
    }

    function create_menu()
    {
        html = '';
        html += '<style>';
        html += '.jump_menu {';
        html += '	font-family: Verdana, Arial, Helvetica, sans-serif;';
        html += '	font-size: 10px;';
        html += '	color: #016CA4;';
        html += '	background-color: #CCCCFF;';
        html += '	border: 1px solid #DDEDC9;';
        html += '	padding: 1px;';
        html += '}';
        html += '</style>';
        html += '<select class="jump_menu" onChange="jump(\'parent\',this,1)">';

        for (i = 0 ; i < array_text.length ; i++)
        {
            html += '    <option value="' + array_link[i] + '">' + array_text[i] + '</option>';
        }

        html += '</select>';
        document.write(html);
    }
