if (mtDropDown.isSupported()) {


var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);


// menu : #1  PRODUCTS
var menu1 = ms.addMenu(document.getElementById("menu1"));
menu1.addItem("Endowment Manager 2008", "products.htm");
menu1.addItem("Benefits", "benefits.htm");


// sousmenu du menu#1 : attacher au 2ieme élément
var subMenu2 = menu1.addMenu(menu1.items[1]);
subMenu2.addItem("Trustee/Investment Committe", "benefits.htm#1");
subMenu2.addItem("Finance/Treasury", "benefits.htm#2");
subMenu2.addItem("Development Office", "benefits.htm#3");
subMenu2.addItem("Fund User/Department", "benefits.htm#4");


// menu : #2    SERVICES
var menu2 = ms.addMenu(document.getElementById("menu2"));
menu2.addItem("Consulting", "consulting.htm" );
menu2.addItem("Maintenance", "maitenance.htm" );
menu2.addItem("Training", "training.htm" );


// menu : #3        COMPANY
var menu3 = ms.addMenu(document.getElementById("menu3"));
menu3.addItem("About Us", "about.htm"); 
menu3.addItem("Press Room", "press.htm");
menu3.addItem("Contact Us", "contact.htm");
menu3.addItem("Careers", "careers.htm");  
    


// menu : #4           SUPPORT
var menu4 = ms.addMenu(document.getElementById("menu4"));
menu4.addItem("FAQ", "faq.htm");
menu4.addItem("System Requirements", "system.htm");
menu4.addItem("Downloads", "downloads.htm");
menu4.addItem("Knowledge Base", "knowledge.htm");





//===============================================================================================================================================
// Écrire le code dans la page
//===============================================================================================================================================
mtDropDown.renderAll();
}

