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", "MBA Home", "home"));
	
	myMenuItemTmp = new MenuItem("why_insead/index.cfm", "Why INSEAD", "deanmessage");
		myMenuItemTmp.AddChildItem(new MenuItem("why_insead/diversity.cfm", "Diversity", "diversity"));
		myMenuItemTmp.AddChildItem(new MenuItem("why_insead/intensity.cfm", "Intensity", "intensity"));
		myMenuItemTmp.AddChildItem(new MenuItem("why_insead/quality.cfm", "Quality", "quality"));
		myMenuItemTmp.AddChildItem(new MenuItem("why_insead/lifelong.cfm", "Lifelong Bonds", "lifelong"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("learning_at_insead/index.cfm", "Learning at INSEAD", "learning_at_insead");
		mySousMenuItemTmp = new MenuItem("learning_at_insead/structure.cfm", "Programme Structure", "structure");
			mySousMenuItemTmp.AddChildItem(new MenuItem("learning_at_insead/core_details.cfm", "Core Courses", "core_details"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("learning_at_insead/elective_details.cfm", "Electives", "elective_details"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
		myMenuItemTmp.AddChildItem(new MenuItem("learning_at_insead/methodology.cfm", "Learning Methodology", "methodology"));
		myMenuItemTmp.AddChildItem(new MenuItem("learning_at_insead/entrepreneurship.cfm", "Entrepreneurship", "entrepreneurship"));
		myMenuItemTmp.AddChildItem(new MenuItem("learning_at_insead/faculty.cfm", "Faculty", "faculty"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("life/index.cfm", "INSEAD Lifestyle", "life");
		myMenuItemTmp.AddChildItem(new MenuItem("life/classes.cfm", "Current Classes", "classes"));
    	myMenuItemTmp.AddChildItem(new MenuItem("life/mba_profiles.cfm", "Profiles", "mba_profiles"));
		mySousMenuItemTmp = new MenuItem("life/campuses.cfm", "The Campuses", "campuses");
			mySousMenuItemTmp.AddChildItem(new MenuItem("life/fontainebleau.cfm", "Europe Campus", "fontainebleau"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("life/singapore.cfm", "Asia Campus", "singapore"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("life/getting_to_fontainebleau.cfm", "Getting to Europe campus", "getting_to_fontainebleau"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("life/getting_to_singapore.cfm", "Getting to Asia campus", "getting_to_singapore"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
		myMenuItemTmp.AddChildItem(new MenuItem("life/exchange.cfm", "Campus Exchange", "exchange"));
		myMenuItemTmp.AddChildItem(new MenuItem("life/families.cfm", "Partners & Families", "families"));
		myMenuItemTmp.AddChildItem(new MenuItem("life/women.cfm", "Women at INSEAD", "women"));
		myMenuItemTmp.AddChildItem(new MenuItem("life/clubs.cfm", "INSEAD Clubs & Activities", "clubs"));
		myMenuItemTmp.AddChildItem(new MenuItem("life/insead_live.cfm", "INSEAD Live", "insead_live"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("admissions/index.cfm", "How to Apply", "apply");
		myMenuItemTmp.AddChildItem(new MenuItem("admissions/requirements.cfm", "Admissions Requirements", "requirements"));
    	myMenuItemTmp.AddChildItem(new MenuItem("admissions/app_process.cfm", "Application Process", "app_process"));
		myMenuItemTmp.AddChildItem(new MenuItem("admissions/checklist.cfm", "Application Checklist", "checklist"));
    	myMenuItemTmp.AddChildItem(new MenuItem("admissions/dates.cfm", "Dates & Deadlines", "dates"));
		myMenuItemTmp.AddChildItem(new MenuItem("admissions/languages.cfm", "Languages", "languages"));
    	myMenuItemTmp.AddChildItem(new MenuItem("admissions/app_online.cfm", "Apply Online", "app_online"));
	myMenu.AddMenuItem(myMenuItemTmp);

	myMenuItemTmp = new MenuItem("financing/financing_mba.cfm", "Financing your MBA", "financing_mba");
		myMenuItemTmp.AddChildItem(new MenuItem("financing/financing_fees.cfm", "Fees & Expenses", "financing_fees"));
		myMenuItemTmp.AddChildItem(new MenuItem("schlmgmt/index.cfm?fuseaction=dsp_list_schl", "INSEAD Scholarships", "scholarship"));
		myMenuItemTmp.AddChildItem(new MenuItem("financing/financing_loans.cfm", "MBA Loans", "financing_loans"));
		myMenuItemTmp.AddChildItem(new MenuItem("financing/financing_funding.cfm", "Funding by Country", "financing_funding"));
	myMenu.AddMenuItem(myMenuItemTmp);

	myMenuItemTmp = new MenuItem("careers/index.cfm", "Career Services", "careers");
		mySousMenuItemTmp = new MenuItem("careers/cross_campus_activities.cfm", "Future Students", "cross_campus_activities");
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/job_search_calendar.cfm", "Job Search Calendar", "job_search_calendar"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/other_links.cfm", "Recruiting Activities", "activities"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/after_insead.cfm", "Life after INSEAD", "after_insead"));
			//mySousMenuItemTmp.AddChildItem(new MenuItem("careers/students_statistics.cfm", "Careers Statistics", "students_statistics"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/faqs.cfm", "Career FAQs", "faqs"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
		mySousMenuItemTmp = new MenuItem("careers/corporate_recruiters.cfm", "Corporate Recruiters", "corporate_recruiters");
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/why_recruit.cfm", "Recruit at INSEAD", "why_recruit"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/consult_resumes.cfm", "CV Search", "consult_resumes"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/post_job.cfm", "Post a Job", "post_job"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/ocr.cfm", "Recruit on Campus", "ocr"));
			//mySousMenuItemTmp.AddChildItem(new MenuItem("careers/summer_internships.cfm", "Summer Internships", "summer_internships"));
//			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/recruiters_statistics.cfm", "Career Statistics", "recruiters_statistics"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("careers/networking.cfm", "Networking with students", "networking"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
		myMenuItemTmp.AddChildItem(new MenuItem("careers/careers_team.cfm", "Careers Team", "careers_team"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("alumni_network/index.cfm", "Alumni Network", "alumni");
		myMenuItemTmp.AddChildItem(new MenuItem("alumni_network/profiles.cfm", "Alumni Profiles", "profiles"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://iaa.insead.edu/IAA/EVENTS/Pages/Default.aspx", "Alumni Events Worldwide", "events"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenu.AddMenuItem(new MenuItem("meet_us/faqs.cfm", "FAQs", "home_faqs"));
	myMenu.AddMenuItem(new MenuItem("meet_us/contact_us.cfm", "Contact us", "home_contact_us"));
