 var array_text = new Array();
    var array_link = new Array();
array_text[0] = "Washington D.C. Activities";
    array_text[1] = "Reading Comprehension";
	array_text[2] = "Cloze Reading";
	array_text[3] = "Sentence Surgeons";
	array_text[4] = "Word Search";
	array_text[5] = "Jigsaw";
	array_text[6] = "Interactive Scavenger Hunt";
	array_text[7] = "Printable Scavenger Hunt";
	array_text[8] = "Landmarks Matching";
	
  
    array_link[0] = "";
    array_link[1] = "dccomp.htm";
	array_link[2] = "dccloze.htm";
	array_link[3] = "http://www.mrnussbaumgames.com/dcsurgeon.php";
	array_link[4] = "dcsearch.htm";
	array_link[5] = "dcjigsaw.htm";
	array_link[6] = "dcintscav.htm";
	array_link[7] = "dcscav.htm";
	array_link[8] = "dclandmarks.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: 14px;';
        html += '	color: #000000;';
        html += '	background-color: #CCCCFF;';
        html += '	border: 1px solid #CCCCFF;';
        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);
    }