var myMenu = new Menu();
var myMenuItemTmp = new MenuItem();
var mySousMenuItemTmp = new MenuItem();

	/* set if the menu must be expanded or collapse */
	myMenu.expandIsFix = false;

	/* menu definition*/ 
	/* new MenuItem(URL, Caption, DHTML_ID) */
	/* DHTML_ID must be define like a variable name : unique and without spaces in the name */
	
	myMenu.AddMenuItem(new MenuItem("index.cfm", "Home", "home"));
	
	myMenuItemTmp = new MenuItem("executive_education/index.cfm", "Executive Education", "execed");
		myMenuItemTmp.AddChildItem(new MenuItem("executive_education/oep.cfm", "Open-enrolment Programmes", "ad_execed_oep"));
		myMenuItemTmp.AddChildItem(new MenuItem("executive_education/csp.cfm", "Company-specific Programmes", "ad_execed_csp"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://executive.education.insead.edu/events/index.cfm", "Events", "events"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://executive.education.insead.edu/faqs/oep_faqs.cfm", "FAQs", "faqs"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("emba/index.cfm", "Executive MBA", "emba");
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/emba/index.cfm", "Global Executive MBA", "gemba"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/emba/ME_section.cfm", "Global Executive MBA Middle East", "gembame"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://tsinghua.insead.edu.sg/", "Tsinghua INSEAD Executive MBA", "tiemba"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenu.AddMenuItem(new MenuItem("research/index.cfm", "Research", "ad_research"));
	
	/*myMenu.AddMenuItem(new MenuItem("events/index.cfm", "Events", "ad_events"));*/
	
	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contact us", "contact_us"));
