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", "Alliance Home", "home"));

	myMenuItemTmp = new MenuItem("MBA/index.cfm", "MBA Exchange", "MBA_index");
		myMenuItemTmp.AddChildItem(new MenuItem("MBA/experience.cfm", "A unique MBA Experience Across Continents", "MBA_experience"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/alliance/documents/FAQtable.pdf", "MBA FAQs", "MBA_FAQs"));
		myMenuItemTmp.AddChildItem(new MenuItem("MBA/interview.cfm", "Alliance Participants Experience: video interviews", "MBA_interview"));
		myMenuItemTmp.AddChildItem(new MenuItem("MBA/contact_us.cfm", "Contact us", "MBA_contact_us"));
	myMenu.AddMenuItem(myMenuItemTmp);	

	myMenuItemTmp = new MenuItem("faculty/index.cfm", "Faculty Exchange", "faculty_exchange");
		myMenuItemTmp.AddChildItem(new MenuItem("faculty/contact_us.cfm", "Contact Us", "faculty_contact_us"));
	myMenu.AddMenuItem(myMenuItemTmp);

	myMenuItemTmp = new MenuItem("research_center/index.cfm", "Center for Global Research & Education", "research_center_index");
		myMenuItemTmp.AddChildItem(new MenuItem("research_center/publications.cfm", "Publications", "research_center_publications"));
		myMenuItemTmp.AddChildItem(new MenuItem("research_center/conferences.cfm", "Research Conferences", "research_conferences"));
		myMenuItemTmp.AddChildItem(new MenuItem("research_center/global_teaching.cfm", "Teaching Innovations", "research_center_global_teaching"));
		myMenuItemTmp.AddChildItem(new MenuItem("research_center/contact_us.cfm", "Contact us", "research_center_contact_us"));
	myMenu.AddMenuItem(myMenuItemTmp);	

	myMenuItemTmp = new MenuItem("phd/index.cfm", "PhD Collaboration", "phd_collaboration");
		myMenuItemTmp.AddChildItem(new MenuItem("phd/PhDstudentexchange.cfm", "PhD Exchange", "phd_exchange"));
		myMenuItemTmp.AddChildItem(new MenuItem("phd/contact_us.cfm", "Contact Us", "phd_contact_us"));
	myMenu.AddMenuItem(myMenuItemTmp);


	myMenuItemTmp = new MenuItem("EDP/index.cfm", "Joint Executive Education Programs", "EDP_index");
		myMenuItemTmp.AddChildItem(new MenuItem("EDP/contact_us.cfm", "Contact us", "EDP_contact_us"));	
	myMenu.AddMenuItem(myMenuItemTmp);

	myMenuItemTmp = new MenuItem("alumni/index.cfm", "Alumni Collaboration", "alumni_index");
		myMenuItemTmp.AddChildItem(new MenuItem("alumni/contact_us.cfm", "Contact us", "alumni_contact_us"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	myMenu.AddMenuItem(new MenuItem("campuses/index.cfm", "Campuses", "alliance_campuses"));
