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", "Giving to INSEAD", "home"));
		
	myMenuItemTmp = new MenuItem("campaign_news/index.cfm", "News and information", "campaign_index");
		myMenuItemTmp.AddChildItem(new MenuItem("campaign_news/news_archive.cfm", "News archive", "news_archive"));
		/*myMenuItemTmp.AddChildItem(new MenuItem("campaign_news/campaign_organisation.cfm", "Organisation", "campaign_organisation"));*/
	myMenu.AddMenuItem(myMenuItemTmp);

    myMenuItemTmp = new MenuItem("endowment/index.cfm", "Endowment", "endowment_index");
  		myMenuItemTmp.AddChildItem(new MenuItem("endowment/overview.cfm", "Investment Overview", "endowment_overview"));
  		myMenuItemTmp.AddChildItem(new MenuItem("endowment/FAQ.cfm", "FAQs", "endowment_FAQ"));
  	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("support_insead/index.cfm", "Why support INSEAD?", "support_index");
		myMenuItemTmp.AddChildItem(new MenuItem("support_insead/make_difference.cfm", "To make a difference", "make_difference"));
		myMenuItemTmp.AddChildItem(new MenuItem("support_insead/financial_reasons.cfm", "For financial reasons", "financial_reasons"));
		myMenuItemTmp.AddChildItem(new MenuItem("support_insead/values_MBA.cfm", "Identifying with our values", "values_MBA"));
		myMenuItemTmp.AddChildItem(new MenuItem("support_insead/what_for_me.cfm", "What's in it for me", "what_for_me"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("what_contribute/index.cfm", "What can I contribute to?", "what_contribute_index");
		myMenuItemTmp.AddChildItem(new MenuItem("what_contribute/attract_best_talent.cfm", "To attract the best talent from around the world", "attract_best_talent"));
		mySousMenuItemTmp = new MenuItem("what_contribute/nurture_research.cfm", "To nurture innovative world class research", "nurture_research");
			mySousMenuItemTmp.AddChildItem(new MenuItem("what_contribute/entrepreneurship.cfm", "International entrepreneurship and family enterprise", "entrepreneurship"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("what_contribute/building_organisations.cfm", "Building and leading high performance organisations", "building_organisations"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("what_contribute/world_markets.cfm", "Understanding world markets and institutions", "world_markets"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("what_contribute/business_society.cfm", "Business in society", "business_society"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
		myMenuItemTmp.AddChildItem(new MenuItem("what_contribute/inspire_environments.cfm", "To provide inspiring environments and facilities", "inspire_environments"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("how_contribute/index.cfm", "How can I contribute?", "how_contribute_index");
		myMenuItemTmp.AddChildItem(new MenuItem("how_contribute/IAF.cfm", "The INSEAD Alumni Fund (IAF)", "IAF"));
		mySousMenuItemTmp = new MenuItem("how_contribute/major_gifts.cfm", "Major 'Campaign' gifts", "major_gifts");
			mySousMenuItemTmp.AddChildItem(new MenuItem("how_contribute/attract_talent.cfm", "Gifts to attract the best talent from around the world", "attract_talent"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("how_contribute/gift_research.cfm", "Gifts to nurture world-class research", "gift_research"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("how_contribute/gift_environments.cfm", "Gifts to provide inspiring environments and facilities", "gift_environments"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
		myMenuItemTmp.AddChildItem(new MenuItem("how_contribute/partnership.cfm", "The INSEAD Partnership", "partnership"));
//		myMenuItemTmp.AddChildItem(new MenuItem("how_contribute/endowment_faqs.cfm", "Endowment FAQs", "endowment_faqs"));
		myMenuItemTmp.AddChildItem(new MenuItem("how_contribute/taxe_apprentissage.cfm", "Taxe d'apprentissage", "taxe_apprentissage"));
		mySousMenuItemTmp = new MenuItem("how_contribute/planned_giving.cfm", "Planned giving", "planned_giving");
			mySousMenuItemTmp.AddChildItem(new MenuItem("how_contribute/reasons_bequest.cfm", "Reasons to make a bequest", "reasons_bequest"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("how_contribute/ways_bequest.cfm", "Ways of making a bequest", "ways_bequest"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("thank_you/index.cfm", "Thank you!", "thank_you_index");
		myMenuItemTmp.AddChildItem(new MenuItem("thank_you/named_gifts.cfm", "Named gifts", "named_gifts"));
		myMenuItemTmp.AddChildItem(new MenuItem("thank_you/circle_of_patrons.cfm", "Circle of Patrons", "circle_of_patrons"));
		myMenuItemTmp.AddChildItem(new MenuItem("thank_you/salamanders.cfm", "Salamanders", "salamanders"));
		myMenuItemTmp.AddChildItem(new MenuItem("thank_you/giving_clubs.cfm", "Annual giving clubs", "giving_clubs"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
//	myMenu.AddMenuItem(new MenuItem("contact_us/faqs.cfm", "FAQs", "faqs"));
	
	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contacts", "campaign_contacts"));
