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 */
	
	myMenuItemTmp = new MenuItem("index.cfm", "PhD Home", "home");
			myMenuItemTmp.AddChildItem(new MenuItem("home/index.cfm", "Why INSEAD?", "home_index"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("program/index.cfm", "Program", "program");
			
			mySousMenuItemTmp = new MenuItem("program/specialization.cfm", "PhD Specialization Areas", "specialization");
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/decision.cfm", "Decision Sciences", "decision"));
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/finance.cfm", "Finance", "finance"));
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/marketing.cfm", "Marketing", "marketing"));
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/ob.cfm", "Organizational Behavior", "ob"));
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/production.cfm", "Technology & Operations Management ", "technology"));
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/strategy.cfm", "Strategy", "strategy"));
			myMenuItemTmp.AddChildItem(mySousMenuItemTmp);

			mySousMenuItemTmp = new MenuItem("program/program_structure.cfm", "PhD Program Structure", "program_structure");
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/abstract.cfm", "Course Abstracts", "abstract"));
					mySousMenuItemTmp.AddChildItem(new MenuItem("program/acad_cal.cfm", "Academic Calendar", "acad_cal"));
			myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
			
			myMenuItemTmp.AddChildItem(new MenuItem("program/PhDProfile.cfm", "PhD Student Profile", "stud_profile"));			
			myMenuItemTmp.AddChildItem(new MenuItem("program/prog_INSEAD.cfm", "INSEAD - Wharton Alliance", "prog_INSEAD"));
		
//			myMenuItemTmp.AddChildItem(new MenuItem("program/prog_MSc.cfm", "MSc Degree", "prog_MSc"));

	myMenu.AddMenuItem(myMenuItemTmp);	


		
	myMenuItemTmp = new MenuItem("admissions/phd.cfm", "Admissions", "admissions");
			myMenuItemTmp.AddChildItem(new MenuItem("admissions/phd.cfm", "PhD", "phd"));
			myMenuItemTmp.AddChildItem(new MenuItem("admissions/online_application.cfm", "Online Application", "online_application"));

			mySousMenuItemTmp = new MenuItem("restricted_area.cfm", "Information for Incoming students", "information");
			myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
		
//			mySousMenuItemTmp = new MenuItem("admissions/online_application.cfm", "Online Application", "online_application");
//			mySousMenuItemTmp.AddChildItem(new MenuItem("admissions/information.cfm", "Information for Incoming students", "information"));
//			myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
    	
	myMenu.AddMenuItem(myMenuItemTmp);	


	myMenuItemTmp = new MenuItem("careers/current_intro.cfm", "Careers", "careers");
			myMenuItemTmp.AddChildItem(new MenuItem("careers/current_intro.cfm", "Current PhD Candidates", "current_intro"));
			myMenuItemTmp.AddChildItem(new MenuItem("careers/placements.cfm", "PhD Placements", "placements"));
//			myMenuItemTmp.AddChildItem(new MenuItem("careers/milestones.cfm", "PhD Milestones", "milestones"));
    myMenu.AddMenuItem(myMenuItemTmp);	



    myMenuItemTmp = new MenuItem("research/index.cfm", "Research", "research");
			myMenuItemTmp.AddChildItem(new MenuItem("research/res_sgp.cfm", "Research Activities in Singapore", "res_sgp"));
			myMenuItemTmp.AddChildItem(new MenuItem("research/dissertations.cfm", "Doctoral Dissertations", "dissertations"));
			myMenuItemTmp.AddChildItem(new MenuItem("research/conferences.cfm", "Conferences, Selected Conference Presentations", "conferences"));
    myMenu.AddMenuItem(myMenuItemTmp);	

	myMenu.AddMenuItem(new MenuItem("useful_links/index.cfm", "Useful Links", "useful_links"));
	myMenu.AddMenuItem(new MenuItem("faqs/index.cfm", "FAQs", "faqs"));
	
	myMenuItemTmp = new MenuItem("contact_us/index.cfm", "Contact and visit us", "contact_us");
			myMenuItemTmp.AddChildItem(new MenuItem("contact_us/visit_insead.cfm", "Visit INSEAD", "visit_us"));
	myMenu.AddMenuItem(myMenuItemTmp);
	myMenu.AddMenuItem(new MenuItem("contact_us/Press.cfm", "Press", "press"));