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("mission/index.cfm", "Our Mission", "mission_index"));
	//myMenu.AddMenuItem(new MenuItem("manfred/index.cfm", "Manfred KETS DE VRIES", "manfred_index"));
	myMenu.AddMenuItem(new MenuItem("programmes/index.cfm", "Programmes", "programmes_index"));
	myMenu.AddMenuItem(new MenuItem("coaching/index.cfm", "Methods", "coaching_index"));
	myMenu.AddMenuItem(new MenuItem("research/index.cfm", "Research & Publications", "research_index"));
	/*myMenuItemTmp = new MenuItem("research/index.cfm", "Research & Publications", "research_index");
		myMenuItemTmp.AddChildItem(new MenuItem("research/research.cfm", "Research", "research"));
		myMenuItemTmp.AddChildItem(new MenuItem("research/books.cfm", "Books", "books"));
		myMenuItemTmp.AddChildItem(new MenuItem("research/articles.cfm", "Articles", "articles"));
	myMenu.AddMenuItem(myMenuItemTmp);	*/
	
	myMenu.AddMenuItem(new MenuItem("instruments/index.cfm", "Instruments", "instruments_index"));
	myMenu.AddMenuItem(new MenuItem("faculty/index.cfm", "Faculty & Staff", "faculty_index"));
	//myMenu.AddMenuItem(new MenuItem("news/index.cfm", "News", "news_index"));
	/*
	var myMenu1 = new MenuItem("conference/index.cfm", "IGLC Events", "iglc_conference");
		myMenu1.AddChildItem(new MenuItem("conf2011/home/index.cfm", "Conference 2011", "Conference2011"))
		myMenu.AddMenuItem(myMenu1);
	*/	
	/*myMenuItemTmp = new MenuItem("conference/index.cfm", "IGLC Events", "iglc_conference");
		mySousMenuItemTmp = new MenuItem("conf2011/home/index.cfm", "Conference 2011", "Conference2011");
			mySousMenuItemTmp.AddChildItem(new MenuItem("conf2011/register.cfm", "Register Online", "registeronline"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("conf2011/practical_information/index.cfm", "Practical Information", "practicalinformation"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("conf2011/progprep/index.cfm", "Programme Preparation", "progprep"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("conf2011/programme/index.cfm", "Programme", "programme"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("conf2011/contact/index.cfm", "Contact Us", "contactus"));
			myMenuItemTmp.AddChildItem(mySousMenuItemTmp);
	myMenu.AddMenuItem(myMenuItemTmp);*/

		
 	//myMenu.AddMenuItem(new MenuItem("conference/index.cfm", "IGLC Events", "iglc_conference"));
	
	//myMenu.AddMenuItem(new MenuItem("testimonies/index.cfm", "Testimonies", "testimonies_index"));
	//myMenu.AddMenuItem(new MenuItem("consulting/index.cfm", "Consulting Unit", "consulting_index"));
	myMenu.AddMenuItem(new MenuItem("other_websites/index.cfm", "IGLC Community", "other_websites"));
	myMenu.AddMenuItem(new MenuItem("contact/index.cfm", "Contact Us", "contact_index"));

