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", "Discover INSEAD Home", "home"));*/
	
	myMenu.AddMenuItem(new MenuItem("who_we_are/index.cfm", "Who we are", "wo_we_are_index"));
	myMenu.AddMenuItem(new MenuItem("history.cfm", "Our History", "history"));
	myMenu.AddMenuItem(new MenuItem("mission_visions.cfm", "Our Mission & Visions", "mission_values"));
	myMenuItemTmp = new MenuItem("constituencies/insead_dean.cfm", "Our Constituencies", "index");
		myMenuItemTmp.AddChildItem(new MenuItem("constituencies/insead_dean.cfm", "Our Dean", "our_dean"));
		myMenuItemTmp.AddChildItem(new MenuItem("constituencies/FranzBHumer.cfm", "Our Chairman", "our_chairman"));
		myMenuItemTmp.AddChildItem(new MenuItem("constituencies/board_directors.cfm", "Board of Directors", "board_directors"));
		myMenuItemTmp.AddChildItem(new MenuItem("constituencies/adv_council.cfm", "Advisory Council", "adv_council"));
		myMenuItemTmp.AddChildItem(new MenuItem("constituencies/int_council.cfm", "International Council", "int_council"));
		myMenuItemTmp.AddChildItem(new MenuItem("constituencies/nat_council.cfm", "National Councils", "nat_council"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	myMenu.AddMenuItem(new MenuItem("publications/index.cfm", "Publications", "publications_index"));
	myMenu.AddMenuItem(new MenuItem("social_media/index.cfm", "Social Media", "social"));
	myMenuItemTmp = new MenuItem("partnerships/index.cfm", "Alliance & Partnership", "partnership");
		myMenuItemTmp.AddChildItem(new MenuItem("partnerships/wharton_alliance.cfm", "Wharton Alliance", "wharton_alliance"));
		myMenuItemTmp.AddChildItem(new MenuItem("partnerships/Tsinghua_partnership.cfm", "Tsinghua Partnership", "tsinghua"));
		myMenuItemTmp.AddChildItem(new MenuItem("partnerships/sorbonne_partnership.cfm", "Sorbonne Partnership", "sorbonne"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	myMenu.AddMenuItem(new MenuItem("environment_policy/index.cfm", "Environment Initiative", "environment"));
	myMenuItemTmp = new MenuItem("jobs/index.cfm", "Our job opportunities", "working_index");
		myMenuItemTmp.AddChildItem(new MenuItem("jobs/job/index.cfm?category=1", "Administration", "Administration"));
		myMenuItemTmp.AddChildItem(new MenuItem("jobs/job/index.cfm?category=2", "Research", "Research"));
	myMenu.AddMenuItem(myMenuItemTmp);
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/campaign/index.cfm", "Giving to INSEAD", "campaign"));
	
	
	
	

