
        if (DropDown.isSupported()) {

                var ms = new DropDownSet(DropDown.direction.down, 0, 0, DropDown.reference.bottomLeft);

                //GLOBAL NAV --- UNT

                var menu1 = ms.addMenu(document.getElementById("menu1"));
                menu1.addItem("&nbsp; That we are", "index.php?next=unt_wsw");
                menu1.addItem("&nbsp; Logistics", "index.php?next=unt_lager");
                menu1.addItem("&nbsp; Management-System", "index.php?next=unt_system");

                //GLOBAL NAV --- TEC

                var menu2 = ms.addMenu(document.getElementById("menu2"));
                menu2.addItem("&nbsp; Compounding", "index.php?next=tec_comp");
                menu2.addItem("&nbsp; Technical expertise", "index.php?next=tec_technik");
                menu2.addItem("&nbsp; Laboratory", "index.php?next=tec_labor");

                //GLOBAL NAV --- DIS

                var menu3 = ms.addMenu(document.getElementById("menu3"));
                menu3.addItem("&nbsp; SABIC Innovative Plastics", "index.php?next=dis_sabic");
                menu3.addItem("&nbsp; SAX Polymers", "index.php?next=dis_sax");
                menu3.addItem("&nbsp; More products", "index.php?next=dis_produkte");

                //GLOBAL NAV --- KON

                var menu4 = ms.addMenu(document.getElementById("menu4"));
                menu4.addItem("&nbsp; Locations", "index.php?next=kon_adresse");
                menu4.addItem("&nbsp; Sales", "index.php?next=kon_vertrieb");
                menu4.addItem("&nbsp; Staff", "index.php?next=kon_mitarbeiter");
                menu4.addItem("&nbsp; Contact form", "index.php?next=kon_formular");
                menu4.addItem("&nbsp; Directions", "index.php?next=kon_anfahrt");

                DropDown.renderAll();
        }