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"));
	myMenu.AddMenuItem(new MenuItem("missions_activities/index.cfm", "Missions & Activities", "1"));
	
	myMenuItemTmp = new MenuItem("events/index.cfm", "Events", "6");
		myMenuItemTmp.AddChildItem(new MenuItem("events/coming_events.cfm", "Coming Events", "6_1"));
		myMenuItemTmp.AddChildItem(new MenuItem("events/recent_events.cfm", "Recent Events", "6_2"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("conferences/index.cfm", "Conferences", "conferences");
		mySousMenuItemTmp = new MenuItem("annual_conference/index.cfm", "IPEC Annual Conference (Fontainebleau)", "2");
			mySousMenuItemTmp.AddChildItem(new MenuItem("annual_conference/programme.cfm", "Programme", "2_2"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("annual_conference/past_conferences.cfm", "Past Conferences", "2_3"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("annual_conference/conference_logistics.cfm", "Conference Logistics", "2_4"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("2007_conf/2009SpeakerBiographies.cfm", "Featured Speakers", "2_6"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
		mySousMenuItemTmp = new MenuItem("singapore_conference/index.cfm", "Singapore Conference", "singapore_conference");
			mySousMenuItemTmp.AddChildItem(new MenuItem("singapore_conference/programme.cfm", "Programme", "programme"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("singapore_conference/past_conferences.cfm", "Past Conferences", "past_conferences"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("singapore_conference/conference_logistics.cfm", "Conference Logistics", "conference_logistics"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("singapore_conference/2009SpeakerBiographies.cfm", "Featured Speakers", "2009SpeakerBiographies"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenuItemTmp = new MenuItem("learning/index.cfm", "Learning about Private Equity", "7");
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu", "Industry News", "7_1"));
		myMenuItemTmp.AddChildItem(new MenuItem("learning/education.cfm", "Education", "7_2"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenu.AddMenuItem(new MenuItem("network/index.cfm", "IPEC Network", "8"));
	myMenu.AddMenuItem(new MenuItem("sponsors/index.cfm", "Sponsors", "4"));
	myMenu.AddMenuItem(new MenuItem("committee/index.cfm", "Committee", "5"));

	/*myMenuItemTmp = new MenuItem("annual_conference/index.cfm", "Annual Conference", "2");
    	myMenuItemTmp.AddChildItem(new MenuItem("annual_conference/programme.cfm", "Programme", "2_2"));
    	myMenuItemTmp.AddChildItem(new MenuItem("annual_conference/past_conferences.cfm", "Past Conferences", "2_3"));
		myMenuItemTmp.AddChildItem(new MenuItem("annual_conference/conference_logistics.cfm", "Conference Logistics", "2_4"));
		myMenuItemTmp.AddChildItem(new MenuItem("2007_conf/2009SpeakerBiographies.cfm", "Featured Speakers", "2_6"));
		myMenuItemTmp.AddChildItem(new MenuItem("annual_conference/registration/index.cfm", "Registration", "2_5"));
	myMenu.AddMenuItem(myMenuItemTmp);*/


	/*myMenuItemTmp = new MenuItem("speakers_series/index.cfm", "Speakers Series", "3");
		myMenuItemTmp.AddChildItem(new MenuItem("speakers_series/pastevents.cfm", "Past Events", "3_1"));
	myMenu.AddMenuItem(myMenuItemTmp);*/
	
	
	
