
function makeMyMenu()
{
  //Use "with(JSFX)" so we dont have to use the fully qualified name JSFX.JSMenuBar etc...
  with(JSFX)
  {
	var myMenuBar = new JSMenuBar(false,true);
	var menu;
	var menu2;
	var menu3;

	menu = new JSMenu("HOME");
	myMenuBar.add(menu);

	menu.add(new JSMenuItem("Home", "../index.html","_self"));


	menu2 = new JSMenu("About Us");
	menu.add(menu2);
	menu2.add(new JSMenuItem("About Us","aboutus.html"));
	menu2.add(new JSMenuItem("Tourism Award","tourismaward.html"));
	menu2.add(new JSMenuItem("Commendations","commendations.html"));
	menu2.add(new JSMenuItem("Gilles Andre Berger","gilles.html"));
	menu2.add(new JSMenuItem("Zarina Ahmad-Berger","zarina.html"));

	
	menu = new JSMenu("COURSES");
	myMenuBar.add(menu);

	menu2 = new JSMenu("French Program");
	menu3 = new JSMenu("French Program Prices");
	menu.add(menu2);

	menu3.add(new JSMenuItem("Online Prices","frenchpricing.html"));
	menu3.add(new JSMenuItem("Adult Prices","frenchpricing.html"));
	menu3.add(new JSMenuItem("Family Prices","frenchpricing.html"));
	menu3.add(new JSMenuItem("School Prices","frenchpricing.html"));
	menu3.add(new JSMenuItem("Youth Prog Prices","frenchpricing.html"));
	menu3.add(new JSMenuItem("Teaching","frenchpricing.html"));



	menu2.add(new JSMenuItem("Online Tuition","onlinetuition.html"));
	menu2.add(new JSMenuItem("Adult Programs","frenchadultprograms.html"));
	menu2.add(new JSMenuItem("Family Programs","frenchfamilyprograms.html"));
	menu2.add(new JSMenuItem("School Programs","frenchschoolprograms.html"));
	menu2.add(new JSMenuItem("Youth Programs","frenchyouthprograms.html"));
	menu2.add(new JSMenuItem("Teachers of French","teachersoffrench.html"));

	menu2.add(menu3);
	
	menu2 = new JSMenu("English Program");
	menu3 = new JSMenu("English Program Prices");
	menu.add(menu2);
	menu.add(new JSMenuItem("Delete French Cooking","http://www.#.com","_blank"));
	menu.add(new JSMenuItem("Delete Literature","http://www.sevamrta.com","_blank"));

	menu3.add(new JSMenuItem("Adult Prices","englishpricing.html"));
	menu3.add(new JSMenuItem("Family Prices","englishpricing.html"));
	menu3.add(new JSMenuItem("Youth Prices","englishpricing.html"));

	menu2.add(new JSMenuItem("Adult Programs","englishadultprograms.html"));
	menu2.add(new JSMenuItem("Family Programs","englishfamilyprograms.html"));
	menu2.add(new JSMenuItem("Youth Programs","englishyouthprograms.html"));
	menu2.add(menu3);



	menu = new JSMenu("RURAL RETREAT");
	menu.add(new JSMenuItem("Accommodation","ruralretreat.html"));

	menu2 = new JSMenu("Bed & Breakfast");
	menu.add(menu2);
	menu2.add(new JSMenuItem("Weekend Getaway","weekendgetaway.html"));
	menu2.add(new JSMenuItem("In-house Dining","in-housedining.html"));
	menu2.add(new JSMenuItem("Tarif","tarif.html"));


	menu.add(new JSMenuItem("Local Attractions","localattractions.html"));
	menu.add(new JSMenuItem("Map of Location","mapoflocation.html"));
	myMenuBar.add(menu);

	menu = new JSMenu("COMMENDATIONS");
	menu.add(new JSMenuItem("French Program","commendations.html"));
	menu.add(new JSMenuItem("English Program","commendations.html"));
	menu.add(new JSMenuItem("Bed & Breakfast","commendations.html"));
	myMenuBar.add(menu);




	menu = new JSMenu("0NLINE TUITION");
	menu.add(new JSMenuItem("Online Tuition","onlinetuition.html"));
	myMenuBar.add(menu);

	menu = new JSMenu("RESOURCES");
	menu.add(new JSMenuItem("Membership","membership.html"));
	menu.add(new JSMenuItem("Teaching Materials","teachingmaterials.html"));
	menu.add(new JSMenuItem("Timetable","timetable.html"));
	menu.add(new JSMenuItem("Enrol Now","enrol.html"));
	menu.add(new JSMenuItem("Email Us","mailto:info@maisondestclaire.com"));
	menu.add(new JSMenuItem("Contact Us","contact.html"));
	menu.add(new JSMenuItem("Offsite Links","links.html"));
	myMenuBar.add(menu);


	myMenuBar.attachLayer("menu1");
	myMenuBar.build();
  }
}

