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", "Alumni", "home"));
	
	myMenuItemTmp = new MenuItem("alumni_network/index.cfm", "Global Alumni Network", "alumni_network_index");
		myMenuItemTmp.AddChildItem(new MenuItem("alumni_network/associations.cfm", "Alumni Associations", "associations"));
		mySousMenuItemTmp = new MenuItem("alumni_network/fund.cfm", "Alumni Fund", "fund");
			mySousMenuItemTmp.AddChildItem(new MenuItem("alumni_network/allocs_funds.cfm", "Allocation of Funds", "allocs_funds"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("alumni_network/giving_programmes.cfm", "Giving Programmes", "giving_programmes"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/giving_to_insead/endowment/index.cfm", "Endowment", "endowment"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("alumni_network/recognition.cfm", "Recognition", "recognition"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("http://www.matchinggifts.com/insead/", "Matching Gifts", "matching"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
		myMenuItemTmp.AddChildItem(new MenuItem("alumni_network/reunions.cfm", "Alumni Reunion Weekends", "reunions"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://iaa.insead.edu/IAA/inseadalumniclubs/Pages/Default.aspx", "Alumni Interest Groups", "interest_groups"));
		//myMenuItemTmp.AddChildItem(new MenuItem("alumni_network/other_authors.cfm", "Authors among our Alumni", "other"));
		//mySousMenuItemTmp = new MenuItem("alumni_network/interest_groups.cfm", "Alumni Interest Groups", "interest_groups");
			//mySousMenuItemTmp.AddChildItem(new MenuItem("alumni_network/sports.cfm", "Sports", "sports"));
			//mySousMenuItemTmp.AddChildItem(new MenuItem("alumni_network/other_authors.cfm", "Authors among our Alumni ", "other"));	
			//mySousMenuItemTmp.AddChildItem(new MenuItem("alumni_network/sports.cfm", "Alumni Sports Group", "sports"));
			//myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
	myMenu.AddMenuItem(myMenuItemTmp);	
	
	myMenu.AddMenuItem(new MenuItem("lifelong_learning/index.cfm", "Lifelong Learning", "lifelong_learning_index"));

	myMenu.AddMenuItem(new MenuItem("career_services/index.cfm", "Career Services", "career_services_index"));
	
	myMenu.AddMenuItem(new MenuItem("alumni_news/index.cfm", "INSEAD Alumni News", "alumni_news_index"));
		
	myMenu.AddMenuItem(new MenuItem("events/index.cfm", "Events", "events_index"));
	
	/*myMenu.AddMenuItem(new MenuItem("photos/index.cfm", "Photos", "photos_index"));*/
	
	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contact us", "contact_us"));
