 var array_text = new Array();
    var array_link = new Array();
array_text[0] = "Explorer Bios";
    array_text[1] = "Marco Polo";
	array_text[2] = "Prince Henry";
	array_text[3] = "Vasco da Gama";
	array_text[4] = "Christopher Columbus";
	array_text[5] = "Ponce de Leon";
	array_text[6] = "Ferdinand Magellan";
	array_text[7] = "Hernando de Soto";
	array_text[8] = "Giovanni da Verrazano";
	array_text[9] = "Samuel de Champlain";
	array_text[10] = "Marquette and Joliet";
	array_text[11] = "Sir Francis Drake";
	array_text[12] = "Lewis and Clark";
	array_text[13] = "Francisco Coronado";

	
	
  
    array_link[0] = "";
    array_link[1] = "marcopolo.htm";
	array_link[2] = "princehenry.htm";
	array_link[3] = "dagama.htm";
	array_link[4] = "columbus.htm";
	array_link[5] = "deleon.htm";
	array_link[6] = "magellan.htm";
	array_link[7] = "hernando_de_soto.htm";
	array_link[8] = "verrazano.htm";
	array_link[9] = "champ2.htm";
	array_link[10] = "history/marquette.htm";
	array_link[11] = "drake.htm";
	array_link[12] = "lcflash.htm";
	array_link[13] = "francisco_coronado.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: 12px;';
        html += '	color: black;';
        html += '	background-color: white;';
        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);
    }