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("about_us/index.cfm", "About Us", "about_index");
		myMenuItemTmp.AddChildItem(new MenuItem("about_us/directors.cfm", "Messages from the Directors", "directors"));
		myMenuItemTmp.AddChildItem(new MenuItem("about_us/team.cfm", "Team", "about_team"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	
	myMenuItemTmp = new MenuItem("research_resources/index.cfm", "Research", "research_resources_index");
		myMenuItemTmp.AddChildItem(new MenuItem("research_resources/ConceptualFramework.cfm", "Conceptual framework", "conceptual_framework"));
 		myMenuItemTmp.AddChildItem(new MenuItem("research_resources/BusinessModelInnovation.cfm", "Business model innovation", "business_model_innovation"));
		myMenuItemTmp.AddChildItem(new MenuItem("research_resources/ScalingUpSocialInnovations.cfm", "Scaling up", "scaling_up"));
		myMenuItemTmp.AddChildItem(new MenuItem("research_resources/ChallengesManagingSocialBusinesses.cfm", "Managing social businesses", "managing_social_businesses"));
	myMenu.AddMenuItem(myMenuItemTmp);	

	//	myMenuItemTmp.AddChildItem(new MenuItem("research_resources/news.cfm", "In the News", "news"));
	//	myMenuItemTmp.AddChildItem(new MenuItem("research_resources/ICE.cfm", "ICE", "ICE"));
	//  myMenu.AddMenuItem(myMenuItemTmp);	

	myMenuItemTmp = new MenuItem("education/index.cfm", "Education", "education_index");
		myMenuItemTmp.AddChildItem(new MenuItem("education/executive_education.cfm", "ISEP Executive Education", "executive_education"));
		myMenuItemTmp.AddChildItem(new MenuItem("education/MBA.cfm", "MBA", "MBA"));
	myMenu.AddMenuItem(myMenuItemTmp);	

	myMenuItemTmp = new MenuItem("network/index.cfm", "Network", "network_index");
		myMenuItemTmp.AddChildItem(new MenuItem("network/CIDConsultingProfile.cfm", "Social Entrepreneur Focus", "CID_consulting"));
		myMenuItemTmp.AddChildItem(new MenuItem("network/M_directory.cfm", "Member Directory", "M_directory"));
		myMenuItemTmp.AddChildItem(new MenuItem("newsletter/index.htm", "Newsletter", "newsletter"));
		myMenuItemTmp.AddChildItem(new MenuItem("network/indevor.cfm", "INSEAD Indevor", "indevor"));
		mySousMenuItemTmp = new MenuItem("network/interactive.cfm", "Conferences", "interactive");
			mySousMenuItemTmp.AddChildItem(new MenuItem("network/programme.cfm", "Programme", "prog"));
			//mySousMenuItemTmp.AddChildItem(new MenuItem("network/registration/index.cfm", "Registration", "registration"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("network/Housing.cfm", "Accommodation", "accommodation"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("network/registration/registration.cfm", "Registration", "registration"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
		myMenuItemTmp.AddChildItem(new MenuItem("network/member_site.cfm", "Member Site", "member_site"));
 		myMenuItemTmp.AddChildItem(new MenuItem("network/photo_gallery.cfm", "Photo gallery", "photo_gallery"));
	myMenu.AddMenuItem(myMenuItemTmp);	

	myMenu.AddMenuItem(new MenuItem("research_resources/cases.cfm", "Online resources", "cases"));

	//myMenu.AddMenuItem(new MenuItem("calendar/index.cfm", "Calendar of Events", "calendar_index"));
	
	myMenuItemTmp = new MenuItem("sponsors/index.cfm", "Sponsors and Partners", "sponsors_index");
		myMenuItemTmp.AddChildItem(new MenuItem("sponsors/AdvisoryCouncil.cfm", "Advisory council", "AdvisoryCouncil"));
		myMenuItemTmp.AddChildItem(new MenuItem("sponsors/Sponsors.cfm", "Sponsors", "Sponsors"));
		myMenuItemTmp.AddChildItem(new MenuItem("sponsors/PartnerOrganizations.cfm", "Partner organizations", "PartnerOrganizations"));
	myMenu.AddMenuItem(myMenuItemTmp);	

	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contact Us", "contact_us_index"));
	
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/isic/index.cfm", "INSEAD Social Innovation Centre", "ISIC_index"));
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/entrepreneurship", "INSEAD Entrepreneurship Centre", "Entrepreneurship_index"));

	
	myMenuItemTmp = new MenuItem("sec/SocialEntrepreneurshipCatalyst.cfm", "INSEAD Social Entrepreneurship Catalyst", "sec");
		myMenuItemTmp.AddChildItem(new MenuItem("sec/SEStructure.cfm", "Structure", "ses"));
		myMenuItemTmp.AddChildItem(new MenuItem("sec/SEEvents.cfm", "Events", "see"));
	myMenu.AddMenuItem(myMenuItemTmp);

