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 */

// Home
	myMenu.AddMenuItem(new MenuItem("index.cfm", "Home", "home"));

	myMenuItemTmp = new MenuItem("home/about_us.cfm", "About Us", "about_us");
	myMenu.AddMenuItem(myMenuItemTmp);
	
// Research	
	myMenuItemTmp = new MenuItem("research/index.cfm", "Research", "research_index");
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/isic/africa/", "Africa Initiative", "africa"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/isic/ecsr/", "Corporate Social Responsibility & Ethics", "corporate"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/isic/healthcare_management_initiative/", "Healthcare Management Initiative", "healthcare"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/isic/humanitarian/", "Humanitarian Research Group", "humanitarian"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/social_entrepreneurship/index.cfm", "Social Entrepreneurship", "social_entrepreneurship"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/isic/sustainability/", "Sustainability", "operations"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
// Education
	myMenuItemTmp = new MenuItem("education/index.cfm", "Education", "education_index");
		myMenuItemTmp.AddChildItem(new MenuItem("education/mba.cfm", "Social Impact Electives", "mba"));
	//	myMenuItemTmp.AddChildItem(new MenuItem("education/edp.cfm", "Executive Education", "edp"));
	myMenu.AddMenuItem(myMenuItemTmp);

// Outreach
	myMenuItemTmp = new MenuItem("outreach/index.cfm", "Outreach", "outreach_index");
		mySousMenuItemTmp = new MenuItem("outreach/AlumniSustainabilityRT-Europe.cfm", "Alumni Sustainability Roundtable - Europe", "alumni");
			mySousMenuItemTmp.AddChildItem(new MenuItem("outreach/board.cfm", "Steering Board", "board"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("outreach/2008_past_roundtable.cfm", "Past Roundtables", "roundtable"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	

		myMenuItemTmp.AddChildItem(new MenuItem("outreach/AlumniSustainabilityRT-N.America.cfm", "Alumni Sustainability Roundtable - North America", "north_alumni"));
	
	myMenu.AddMenuItem(myMenuItemTmp);

	myMenu.AddMenuItem(new MenuItem("donors/index.cfm", "Donors and Sponsors", "donors"));
	
// Social Innovation on Knowledge
 	myMenu.AddMenuItem(new MenuItem("http://knowledge.insead.edu/socialinnovation.cfm", "Knowledge on Social Innovation", "knowledge_index"));
	

// Contact Us
	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contacts", "contact_us_index"));
