
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("Introduction", "../index.html","_self"));
	menu.add(new JSMenuItem("Home", "home.html","_self"));
    menu.add(new JSMenuItem("Home Fran&ccedil\;ais", "home-fr.html","_self"));

	menu2 = new JSMenu("About Us");
	menu.add(menu2);
	menu2.add(new JSMenuItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;About Us","aboutus.html"));
	menu2.add(new JSMenuItem("Tourism Award","tourism-award.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);

    menu.add(new JSMenuItem("Courses", "courses.html","_self"));

	menu2 = new JSMenu("French Program");
	menu3 = new JSMenu("French Program Prices");
	menu.add(menu2);

    menu3.add(new JSMenuItem("French Program Prices","french-prices.html"));
	menu3.add(new JSMenuItem("Online Prices","frenchpricing.html"));
	menu3.add(new JSMenuItem("Adult Prices","adult-program-prices.html#adult-prices"));
	menu3.add(new JSMenuItem("Family Prices","frenchpricing.html"));
	menu3.add(new JSMenuItem("School Prices","school-prices.html"));
	menu3.add(new JSMenuItem("Youth Prog Prices","youth-program-prices.html#youth-prices"));
	menu3.add(new JSMenuItem("Teaching","frenchpricing.html"));



	menu2.add(new JSMenuItem("Online Tuition","onlinetuition.html"));
	menu2.add(new JSMenuItem("Adult Programs","adult-program-prices.html"));
	menu2.add(new JSMenuItem("Family Programs","family-programs.html"));
	menu2.add(new JSMenuItem("School Programs","school-prog.html"));
	menu2.add(new JSMenuItem("Youth Programs","youth-program-prices.html"));
    menu2.add(new JSMenuItem("Eco Learning","eco-learning.html"));
	menu2.add(new JSMenuItem("Teachers of French","teachers-french.html"));

	menu2.add(menu3);
	
	menu2 = new JSMenu("English Program");
	menu3 = new JSMenu("English Program Prices");
	menu.add(menu2);
	menu.add(new JSMenuItem("French Cooking","cooking.html"));
	menu.add(new JSMenuItem("Literature","literature.html"));

    menu3.add(new JSMenuItem("Adult Prices","english-courses.html"));
	menu3.add(new JSMenuItem("Family Prices","english-courses.html"));
	menu3.add(new JSMenuItem("Youth Prices","english-courses.html"));

	menu2.add(new JSMenuItem("Adult Programs","english-courses.html"));
	menu2.add(new JSMenuItem("Family Programs","english-courses.html"));
	menu2.add(new JSMenuItem("Youth Programs","english-courses.html"));
	menu2.add(menu3);



	menu = new JSMenu("RURAL RETREAT");
	menu.add(new JSMenuItem("Rural Retreat","ruralretreat.html"));
	menu.add(new JSMenuItem("Accommodation","accommodation.html"));
	
	menu2 = new JSMenu("Bed & Breakfast");
	menu.add(menu2);
	menu2.add(new JSMenuItem("Weekend Getaway","weekend.html"));
	menu2.add(new JSMenuItem("In-house Dining","inhouse-dining.html"));
	menu2.add(new JSMenuItem("Tarif","tarif.html"));

	menu.add(new JSMenuItem("Holiday Packages","holiday-packages.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("Teachers &amp; students","commendations-teachers.html"));
	menu.add(new JSMenuItem("In Service","commendations-in-service.html"));
	menu.add(new JSMenuItem("Bed &amp; Breakfast","commendations-bb.html"));
    menu.add(new JSMenuItem("Tourism Award","tourism-award.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();
  }
}
