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("about_us/index.cfm", "About us", "about_us"));
	myMenuItemTmp = new MenuItem("faculty/index.cfm", "Faculty", "faculty");
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/faculty/profiles/panderson/", "Philip Anderson", "panderson"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/faculty/profiles/vaggarwal/", "Vikas Aggarwal", "vaggarwal"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/faculty/profiles/jdehaas/", "Joost De Haas", "jdehaas"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/faculty/profiles/lfang/", "Lily Fang", "lfang"));
		myMenuItemTmp.AddChildItem(new MenuItem("faculty/david_lai.cfm", "David Lai", "dlai"));
		myMenuItemTmp.AddChildItem(new MenuItem("faculty/bill_magill.cfm", "Bill Magill", "bmagill"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/faculty/profiles/pturner/", "Patrick Turner", "pturner"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/faculty/profiles/GWRIGLEY/", "Graham Wrigley", "gwrigley"));
		myMenuItemTmp.AddChildItem(new MenuItem("http://www.insead.edu/facultyresearch/faculty/profiles/czeisberger/", "Claudia Zeisberger", "czeisberger"));
	myMenu.AddMenuItem(myMenuItemTmp);
	myMenuItemTmp = new MenuItem("courses/index.cfm", "Courses", "courses");
		mySousMenuItemTmp = new MenuItem("courses/index.cfm", "MBA", "mba");
			mySousMenuItemTmp.AddChildItem(new MenuItem("courses/PrivateEquity.cfm", "Private Equity", "private_equity"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("courses/PrivateEquityFinance.cfm", "Private Equity Finance", "private_equity_finance"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("courses/leveragedbuyouts.cfm", "Leveraged Buyouts", "buyouts"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("courses/turnarounds.cfm", "Managing Corporate Turnarounds", "turnarounds"));
			mySousMenuItemTmp.AddChildItem(new MenuItem("courses/100days.cfm", "Your First Hundred Days", "hundred"));
		myMenuItemTmp.AddChildItem(mySousMenuItemTmp);	
		myMenuItemTmp.AddChildItem(new MenuItem("courses/executive_education.cfm", "Executive Education", "edp"));
	myMenu.AddMenuItem(myMenuItemTmp);
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/facultyresearch/centres/global_private_equity_initiative/newsletter/index.htm", "Newsletter", "newsletter"));
	myMenu.AddMenuItem(new MenuItem("articles/index.cfm", "Articles", "articles"));
	myMenu.AddMenuItem(new MenuItem("publications/index.cfm", "Case studies & Publications", "publications"));
	myMenu.AddMenuItem(new MenuItem("students/index.cfm", "Student Projects", "students"));
	/*myMenu.AddMenuItem(new MenuItem("best/index.cfm", "Best in Class", "best"));*/
	myMenu.AddMenuItem(new MenuItem("partnering_programme/index.cfm", "Research Partnerships", "partner"));
	
	myMenuItemTmp = new MenuItem("events/index.cfm", "Events", "events");
		myMenuItemTmp.AddChildItem(new MenuItem("events/index.cfm", "On campus", "oncampus"));
		myMenuItemTmp.AddChildItem(new MenuItem("events/off-campus.cfm", "Off campus", "offcampus"));
	myMenu.AddMenuItem(myMenuItemTmp);
	
	/*myMenu.AddMenuItem(new MenuItem("events/index.cfm", "Events", "events"));*/
	
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/mba/clubs/ipec/", "IPEC", "ipec"));
	myMenu.AddMenuItem(new MenuItem("http://iaa.insead.edu/IAA/inseadalumniclubs/IPEN/Pages/Homepage.aspx", "IPEN", "ipen"));
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/facultyresearch/areas/entrepreneurship/ideas/research_centres2.cfm", "Centre for Entrepreneurship", "maag"));
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/facultyresearch/areas/entrepreneurship/index.cfm", "Entrepreneurship and Family Entreprise", "family"));
	/*myMenu.AddMenuItem(new MenuItem("students/index.cfm", "Students", "students"));*/
	/*myMenu.AddMenuItem(new MenuItem("glossary/index.cfm", "Glossary", "glossary"));*/
	myMenu.AddMenuItem(new MenuItem("links/index.cfm", "Links", "links"));
	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contacts", "contact_us"));
	

