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("programme/index.cfm", "Programme", "programme_index"));
		/*myMenuItemTmp.AddChildItem(new MenuItem("programme/thursday.cfm", "Thursday", "programme_thursday"));
		myMenuItemTmp.AddChildItem(new MenuItem("programme/friday.cfm", "Friday", "programme_friday"));*/
	/*myMenu.AddMenuItem(myMenuItemTmp);	*/
	myMenu.AddMenuItem(new MenuItem("Registration/index.cfm", "Registration", "Registration"));
	myMenu.AddMenuItem(new MenuItem("speakers/index.cfm", "Speakers", "speakers"));
	

	myMenuItemTmp = new MenuItem("PanelDiscussion/PanelDiscussionDec2011.cfm", "Panel Discussion", "PanelDiscussionINDEX");
		myMenuItemTmp.AddChildItem(new MenuItem("PanelDiscussion/PanelDiscussionDec2011.cfm", "GEF Dec 2011 Sessions", "PanelDiscussion2011"));
		myMenuItemTmp.AddChildItem(new MenuItem("PanelDiscussion/PanelDiscussionJune2011.cfm", "GEF Jun 2011 Sessions", "PanelDiscussionJune2011"));
		myMenuItemTmp.AddChildItem(new MenuItem("PanelDiscussion/PanelDiscussionJune2010.cfm", "GEF Jun 2010 Sessions", "PanelDiscussion2010"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	
	//myMenu.AddMenuItem(new MenuItem("PhotoGallery/PhotoGallery.cfm", "Photo Gallery", "PhotoGallery"));

	myMenuItemTmp = new MenuItem("PhotoGallery/PhotoGallery_Dec2011.cfm", "Photo Gallery", "PhotoGallery");
		myMenuItemTmp.AddChildItem(new MenuItem("PhotoGallery/PhotoGallery_Dec2011.cfm", "Dec 2011", "PhotoGallery_Dec2011"));
		myMenuItemTmp.AddChildItem(new MenuItem("PhotoGallery/PhotoGallery_Dec2010.cfm", "Dec 2010", "PhotoGallery_Dec2010"));
	myMenu.AddMenuItem(myMenuItemTmp);	

	
	
/*	myMenu.AddMenuItem(new MenuItem("speakers/Speakerpresentations.cfm", "Speaker presentations", "speaker_presentations"));
	myMenu.AddMenuItem(new MenuItem("photogallery.cfm", "Photo Gallery", "photo_gallery"));*/
	
	myMenuItemTmp = new MenuItem("past_events/dec10.cfm", "Past events", "events");
		myMenuItemTmp.AddChildItem(new MenuItem("past_events/dec10.cfm", "8 December 2010", "dec10"));
		myMenuItemTmp.AddChildItem(new MenuItem("past_events/may10.cfm", "14 May 2010", "may10"));
		myMenuItemTmp.AddChildItem(new MenuItem("past_events/may09.cfm", "22 May 2009", "may09"));
		myMenuItemTmp.AddChildItem(new MenuItem("past_events/june08.cfm", "19-20 June 2008", "june08"));
		myMenuItemTmp.AddChildItem(new MenuItem("past_events/dec2008/dec08.cfm", "4 December 2008", "dec08"));
	myMenu.AddMenuItem(myMenuItemTmp);	
	
//	myMenu.AddMenuItem(new MenuItem("BVC/index.cfm", "The Business Venture Competition ", "venture"));
	/*myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/events/global_entrepreneurship_forum/speakers/docs/BVC 2nd page.pdf", "The Business Venture Competition ", "venture"));*/
	/*myMenu.AddMenuItem(new MenuItem("conference/index.cfm", "Conference Logistics", "conference"));*/
	//myMenu.AddMenuItem(new MenuItem("registration/index.cfm", "Registration", "registration"));
	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contact us", "contact_us"));


