var directory = "";

function goTo(site){
 if(site != "Gehe zu...") location.href = "http://"+document.domain+directory+"/"+site;
}

var options = Array();
options.push("Startseite,");
options.push("Anorganik,anorganik/");
options.push("- Copper Silver Gold,anorganik/copper_silver_gold.html");
options.push("- Crystals,anorganik/crystals.html");
options.push("- Effervescent Experiments,anorganik/effervescent_experiments.html");
options.push("- Fire Gel,anorganik/fire_gel.html");
options.push("- Flame tests and Spectroscopy,anorganik/flame_tests_and_spectroscopy.html");
options.push("- Investigation of sherbet powder,anorganik/investigation_of_sherbet_powder.html");
options.push("- Magic Writing,anorganik/magic_writing.html");
options.push("- Oxidation of Metals,anorganik/oxidation_of_metals.html");
options.push("- Reaction Kinetics,anorganik/reaction_kinetics.html");
options.push("- Reduction of lead oxide,anorganik/reduction_of_lead_oxide.html");
options.push("- Special Photo Paper,anorganik/special_photo_paper.html");
options.push("- The Snake of the Pharao,anorganik/the_snake_of_the_pharao.html");
options.push("Organik,organik/");
options.push("- Aftershave,organik/aftershave.html");
options.push("- Amino acids,organik/amino_acids.html");
options.push("- Analysis of plant ash,organik/analysis_of_plant_ash.html");
options.push("- Baileys,organik/baileys.html");
options.push("- Chromatography,organik/chromatography.html");
options.push("- Coloured tissue,organik/coloured_tissue.html");
options.push("- Comparison of soap and tenside,organik/comparison_of_soap_and_tenside.html");
options.push("- Detection of bleaching and brigthening agents,organik/detection_of_bleaching_and_brigthening_agents.html");
options.push("- Detection of elements in organic substances,organik/detection_of_elements_in_organic_substances.html");
options.push("- Detection of proteins in natural products,organik/detection_of_proteins_in_natural_products.html");
options.push("- Direct Dyes and Materials,organik/direct_dyes_and_materials.html");
options.push("- Dyeing in batik style,organik/dyeing_in_batik_style.html");
options.push("- Enzym 1,organik/enzym_1.html");
options.push("- Enzym 2,organik/enzym_2.html");
options.push("- Enzym 3,organik/enzym_3.html");
options.push("- Examination of garlic,organik/examination_of_garlic.html");
options.push("- Examination of important disaccharides,organik/examination_of_important_disaccharides.html");
options.push("- Experiments with vanilla ice cream,organik/experiments_with_vanilla_ice_cream.html");
options.push("- Foam bath and massage oil,organik/foam_bath_and_massage_oil.html");
options.push("- Fructose,organik/fructose.html");
options.push("- Glucose,organik/glucose.html");
options.push("- Groundnut creme,organik/groundnut_creme.html");
options.push("- Lemon sorbet,organik/lemon_sorbet.html");
options.push("- Natural dyes - Anthocyans,organik/natural_dyes_-_Anthocyans.html");
options.push("- Picric acid,organik/picric_acid.html");
options.push("- Nitrocellulose 1,organik/nitrocellulose_1.html");
options.push("- Nitrocellulose 2,organik/nitrocellulose_2.html");
options.push("- Polysaccharides,organik/polysaccharides.html");
options.push("- Preparation of blue denim,organik/preparation_of_blue_denim.html");
options.push("- Preparation of lip gloss,organik/preparation_of_lip_gloss.html");
options.push("- Preparation of slime,organik/preparation_of_slime.html");
options.push("- Production of soap,organik/production_of_soap.html");
options.push("- Protease in detergents,organik/protease_in_detergents.html");
options.push("- Protein 1,organik/protein_1.html");
options.push("- Protein 2,organik/protein_2.html");
options.push("- Proteins in natural products,organik/proteins_in_natural_products.html");
options.push("- Wash-test for soap,organik/wash-test_for_soap.html");
options.push("Kontakt,kontakt.html");

for(i=0;i<options.length;i++){
 optionInfo = Array();
 optionInfo = options[i].split(",");
 document.getElementById("goto").options[i+1] = new Option(optionInfo[0],optionInfo[1]);
 if(optionInfo[0].charAt(0) != "-") document.getElementById("goto").options[i+1].className = "bold";
}
