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.cfm", "Sustainability Executive Roundtables", "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("ResearchSeminarsBrownbagsWorkshops.cfm", "Seminars, Brownbags and Workshops", "ResearchSeminarsBrownbagsWorkshops"));
		//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"));
	
	
// Media
	myMenuItemTmp = new MenuItem("Media.cfm", "Media", "media");
		myMenuItemTmp.AddChildItem(new MenuItem("AnnualReport.cfm", "Annual Report", "AnnualReport"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/isic/newsletter/index.htm", "Newsletter", "newsletter"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.facebook.com/pages/INSEAD-Social-Innovation-Centre/174205513183", "Facebook", "facebook"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.linkedin.com/groups?about=&gid=2574783&trk=anet_ug_grppro", "LinkedIn", "LinkedIn"));
		myMenuItemTmp.AddChildItem(new MenuItem("Ontwitter.cfm", "Twitter", "twitter"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://insead-social-innovation.blogspot.com/", "Blog", "blog"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://knowledge.insead.edu/socialinnovation.cfm", "Knowledge", "knowledge_index"));
		myMenuItemTmp.AddChildItem(new MenuItem("OnVideo.cfm", "Video", "video"));
	//	myMenuItemTmp.AddChildItem(new MenuItem("education/edp.cfm", "Executive Education", "edp"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
// 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"));

