
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", "pages/home.html","_self"));
    menu.add(new JSMenuItem("Home Fran&ccedil\;ais", "pages/home-fr.html","_self"));

	menu2 = new JSMenu("About Us");
	menu.add(menu2);
	menu2.add(new JSMenuItem("About Us","pages/aboutus.html"));
	menu2.add(new JSMenuItem("Tourism Award","pages/tourism-award.html"));
	menu2.add(new JSMenuItem("Commendations","pages/commendations.html"));
	menu2.add(new JSMenuItem("Gilles Andre Berger","pages/gilles.html"));
	menu2.add(new JSMenuItem("Zarina Ahmad-Berger","pages/zarina.html"));


	
	menu = new JSMenu("COURSES");
	myMenuBar.add(menu);

    menu.add(new JSMenuItem("Courses", "pages/courses.html","_self"));

	menu2 = new JSMenu("French Program");
	menu3 = new JSMenu("French Program Prices");
	menu.add(menu2);

    menu3.add(new JSMenuItem("French Program Prices","pages/french-prices.html"));
	menu3.add(new JSMenuItem("Online Prices","pages/frenchpricing.html"));
	menu3.add(new JSMenuItem("Adult Prices","pages/adult-program-prices.html#adult-prices"));
	menu3.add(new JSMenuItem("Family Prices","pages/frenchpricing.html"));
	menu3.add(new JSMenuItem("School Prices","pages/school-prices.html"));
	menu3.add(new JSMenuItem("Youth Prog Prices","pages/youth-program-prices.html#youth-prices"));
	menu3.add(new JSMenuItem("Teaching","pages/frenchpricing.html"));



	menu2.add(new JSMenuItem("Online Tuition","pages/onlinetuition.html"));
	menu2.add(new JSMenuItem("Adult Programs","pages/adult-program-prices.html"));
	menu2.add(new JSMenuItem("Family Programs","pages/family-programs.html"));
	menu2.add(new JSMenuItem("School Programs","pages/school-prog.html"));
	menu2.add(new JSMenuItem("Youth Programs","pages/youth-program-prices.html"));
    menu2.add(new JSMenuItem("Eco Learning","pages/eco-learning.html"));
	menu2.add(new JSMenuItem("Teachers of French","pages/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","pages/cooking.html"));
	menu.add(new JSMenuItem("Literature","pages/literature.html"));

	menu3.add(new JSMenuItem("Adult Prices","pages/english-courses.html"));
	menu3.add(new JSMenuItem("Family Prices","pages/english-courses.html"));
	menu3.add(new JSMenuItem("Youth Prices","pages/english-courses.html"));

	menu2.add(new JSMenuItem("Adult Programs","pages/english-courses.html"));
	menu2.add(new JSMenuItem("Family Programs","pages/english-courses.html"));
	menu2.add(new JSMenuItem("Youth Programs","pages/english-courses.html"));
	menu2.add(menu3);



	menu = new JSMenu("RURAL RETREAT");
	menu.add(new JSMenuItem("Rural Retreat","pages/ruralretreat.html"));
	menu.add(new JSMenuItem("Accommodation","pages/accommodation.html"));

	menu2 = new JSMenu("Bed & Breakfast");
	menu.add(menu2);
	menu2.add(new JSMenuItem("Weekend Getaway","pages/weekend.html"));
	menu2.add(new JSMenuItem("In-house Dining","pages/inhouse-dining.html"));
	menu2.add(new JSMenuItem("Tarif","pages/tarif.html"));

	menu.add(new JSMenuItem("Holiday Packages","pages/holiday-packages.html"));
	menu.add(new JSMenuItem("Local Attractions","pages/localattractions.html"));
	menu.add(new JSMenuItem("Map of Location","pages/mapoflocation.html"));
	myMenuBar.add(menu);

	menu = new JSMenu("COMMENDATIONS");
	menu.add(new JSMenuItem("French Program","pages/commendations.html"));
    menu.add(new JSMenuItem("Teachers &amp; Students","pages/commendations-teachers.html"));
	menu.add(new JSMenuItem("In Service","pages/commendations-in-service.html"));
	menu.add(new JSMenuItem("Bed &amp; Breakfast","pages/commendations-bb.html"));
    menu.add(new JSMenuItem("Tourism Award","pages/tourism-award.html"));
	myMenuBar.add(menu);




	menu = new JSMenu("0NLINE TUITION");
	menu.add(new JSMenuItem("Online Tuition","pages/onlinetuition.html"));
	myMenuBar.add(menu);

	menu = new JSMenu("RESOURCES");
	menu.add(new JSMenuItem("Membership","pages/membership.html"));
	menu.add(new JSMenuItem("Teaching Materials","pages/teachingmaterials.html"));
	menu.add(new JSMenuItem("Timetable","pages/timetable.html"));
	menu.add(new JSMenuItem("Enrol Now","pages/enrol.html"));
	menu.add(new JSMenuItem("Email Us","mailto:info@maisondestclaire.com"));
	menu.add(new JSMenuItem("Contact Us","pages/contact.html"));
	menu.add(new JSMenuItem("Offsite Links","pages/links.html"));
	myMenuBar.add(menu);


	myMenuBar.attachLayer("menu1");
	myMenuBar.build();
  }
}

