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", "About the seminar", "home"));
	myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/events/journalists/docs/programme.pdf", "Programme", "programme"));
	//myMenu.AddMenuItem(new MenuItem("guest_speaker/index.cfm", "Guest speaker", "guest_speaker"));
	myMenu.AddMenuItem(new MenuItem("participant_profile/index.cfm", "Participant profile", "participant_profile"));
	
	myMenu.AddMenuItem(new MenuItem("apply_online/index.cfm", "Apply online", "apply_online"));
	myMenu.AddMenuItem(new MenuItem("accommodation/index.cfm", "Accommodation", "accommodation"));
	//myMenu.AddMenuItem(new MenuItem("http://www.insead.edu/events/journalists/accommodation/docs/Practical Information BJS 2008.doc", "Practical information", "practical"));
	
	myMenu.AddMenuItem(new MenuItem("contact_us/index.cfm", "Contact us", "contact_us"));

