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", "Finance-Home", "home"));
	myMenuItemTmp = new MenuItem("finance area/faculty.cfm", "Finance Area", "1");
		myMenuItemTmp.AddChildItem(new MenuItem("finance area/faculty.cfm", "Faculty", "1_1"));
    	myMenuItemTmp.AddChildItem(new MenuItem("finance area/administrative_support.cfm", "Administrative Support", "1_2"));
    	myMenuItemTmp.AddChildItem(new MenuItem("finance area/phdfacebook.cfm", "PhD", "1_3"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	
	myMenuItemTmp = new MenuItem("awards and honors/research.cfm", "Awards and Honours", "5");
		myMenuItemTmp.AddChildItem(new MenuItem("awards and honors/research.cfm", "Research", "5_1"));
    	myMenuItemTmp.AddChildItem(new MenuItem("awards and honors/teaching.cfm", "Teaching", "5_2"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	
	myMenuItemTmp = new MenuItem("publications/index.cfm", "Research", "2");
		myMenuItemTmp.AddChildItem(new MenuItem("publications/journal_articles.cfm", "Journal Articles", "2_1"));
    	myMenuItemTmp.AddChildItem(new MenuItem("publications/working_papers.cfm", "Working Papers", "2_2"));
    	myMenuItemTmp.AddChildItem(new MenuItem("publications/case_studies.cfm", "Case Studies", "2_3"));
    	myMenuItemTmp.AddChildItem(new MenuItem("publications/books.cfm", "Books", "2_4"));
		myMenuItemTmp.AddChildItem(new MenuItem("publications/chaptersinbooks.cfm", "Chapters in Books", "2_5"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	
	myMenu.AddMenuItem(new MenuItem("activities/seminars.cfm", "Seminars", "10"));
	
	myMenuItemTmp = new MenuItem("activities/teaching.cfm", "Teaching", "3");
		myMenuItemTmp.AddChildItem(new MenuItem("activities/MBA.cfm", "MBA", "3_1"));
		myMenuItemTmp.AddChildItem(new MenuItem("activities/EMBA.cfm", "EMBA", "3_2"));
		myMenuItemTmp.AddChildItem(new MenuItem("activities/ExecutiveEducation.cfm", "Executive Education", "3_3"));
		myMenuItemTmp.AddChildItem(new MenuItem("finance area/PhDcurriculum.cfm", "PhD", "3_4"));
		myMenuItemTmp.AddChildItem(new MenuItem("Macquarie.cfm", "Macquarie", "3_5"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenu.AddMenuItem(new MenuItem("activities/CFA.cfm", "CFA", "9"));
	
	myMenuItemTmp = new MenuItem("centre of excellence/index.cfm", "Centre Of Excellence", "4");
    	//myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu.sg/asiafinance/", "A.P.I.F", "4_1"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenu.AddMenuItem(new MenuItem("recruiting/index.cfm", "Recruiting", "6"));
	
	myMenu.AddMenuItem(new MenuItem("publications/INSEAD-Finance-IntheNews.cfm", "In the news", "8"));
	
	//myMenu.AddMenuItem(new MenuItem("restricted area/login.cfm", "For Internal Use", "7"));
