<!--
function onLoad() {
	loadMenus();
}

function loadMenus() {
    //Dynamic Menus
    
    window.myMenu = new Menu("My Menu");
    myMenu.addMenuItem("Overview", "top.window.location='/products.asp'");
    myMenu.addMenuItem("Intaba Rooibos", "top.window.location='/rooibos.asp'");
    myMenu.addMenuItem("Intaba Honeybush", "top.window.location='/products/honeybush.asp'");
		window.myMenu.disableDrag = true;
		
	 window.myMenu1 = new Menu("Profile");
    myMenu1.addMenuItem("- Company Profile", "top.window.location='/profile/company.asp'");
    myMenu1.addMenuItem("- Board of Directors", "top.window.location='/profile/directors.asp'");
	myMenu1.addMenuItem("- Approach to BEE ", "top.window.location='/profile/bee.asp'");
    window.myMenu1.disableDrag = true;
	
    window.myMenu2 = new Menu("Services");
	myMenu2.addMenuItem("- Introduction ", "top.window.location='/services/introduction.asp'");
	myMenu2.addMenuItem("- Procurement", "top.window.location='/services/procurement.asp'");
	myMenu2.addMenuItem("- Networking Systems", "top.window.location='/services/network_systems.asp'");
	myMenu2.addMenuItem("- IT Support Services", "top.window.location='/services/support_services.asp'");
	myMenu2.addMenuItem("- Management Services", "top.window.location='/services/management.asp'");
	myMenu2.addMenuItem("- Business Solutions", "top.window.location='/services/business_solutions.asp'");
	myMenu2.addMenuItem("- Development & Maintenance", "top.window.location='/services/dev_maintenance.asp'");
	myMenu2.addMenuItem("- Computer Associates", "top.window.location='/services/computer_associates.asp'");
	window.myMenu2.disableDrag = true;
		

    window.myMenu3 = new Menu("Sponsorship");
	myMenu3.addMenuItem("Intro", "top.window.location='/boxing/boxing.asp'");
	myMenu3.addMenuItem("Tournaments", "top.window.location='/boxing/tournaments.asp'");
    myMenu3.addMenuItem("Sponsorship", "top.window.location='/boxing/sponsorship.asp'");
	window.myMenu.disableDrag = true;

      window.mySubMenu4 = new Menu("Sponsorship");
    mySubMenu4.addMenuItem("Dancer", "top.window.location='http://developer.netscape.com'");
    mySubMenu4.addMenuItem("Teacher", "top.window.location='http://developer.netscape.com'");

    window.myMenu4 = new Menu("Technologies");
	myMenu4.addMenuItem("Intro", "top.window.location='/music/intro.asp'");
	myMenu4.addMenuItem("Facilities", "top.window.location='/music/facilities.asp'");
    myMenu4.addMenuItem(mySubMenu4);
	window.myMenu.disableDrag = true;
	
    window.mySubMenu5 = new Menu("Football - Soccer Tours");
    mySubMenu5.addMenuItem("Intro", "top.window.location='/tours/soccertours/intro.asp'");
    mySubMenu5.addMenuItem("The Florida Soccer Tour", "top.window.location='/tours/soccertours/florida_soccertour.asp'");
	mySubMenu5.addMenuItem("The Mudialito Cup", "top.window.location='/tours/soccertours/mundialito_cup.asp'");
    mySubMenu5.addMenuItem("The Dana Cup No.1", "top.window.location='/tours/soccertours/danacup_no1.asp'");
	mySubMenu5.addMenuItem("The Gothia Cup", "top.window.location='/tours/soccertours/gothia_cup.asp'");
    mySubMenu5.addMenuItem("The Haarlem Cup", "top.window.location='/tours/soccertours/haarlem_cup.asp'");
	mySubMenu5.addMenuItem("The San Marino Cup", "top.window.location='/tours/soccertours/sanmarino_cup.asp'");
	mySubMenu5.addMenuItem("SA VS England", "top.window.location='/tours/soccertours/sa_vs_england.asp'");
	
    window.myMenu5 = new Menu("Example 5");
    myMenu5.addMenuItem("Township Tours", "top.window.location='/tours/township.asp'");
    myMenu5.addMenuItem("Private Tours", "top.window.location='/tours/privatetours.asp'");
    myMenu5.addMenuItem("Other Services", "top.window.location='/tours/newservices.asp'");
    myMenu5.addMenuItem("Car Rental", "top.window.location='http:/tours/rental.asp'");
    myMenu5.addMenuItem("Accommodation", "top.window.location='/tours/accommodation.asp'");
	myMenu5.addMenuItem("Booking Form", "top.window.location='/tours/booking_form.asp'");
	myMenu5.addMenuItem(mySubMenu5);
    window.myMenu.disableDrag = true;

  window.myMenu6 = new Menu("Example 6");
    myMenu6.addMenuItem("Intro", "top.window.location='/volunteers/intro.asp'");
    myMenu6.addMenuItem("Application", "top.window.location='/volunteers/application.asp'");
window.myMenu.disableDrag = true;

    window.myMenu7 = new Menu("Example 7");
	myMenu7.addMenuItem("Intro", "top.window.location='/football/intro.asp'");
    myMenu7.addMenuItem("Building the academy", "top.window.location='/football/buildingtheacademy.asp'");
	myMenu7.addMenuItem("Sponsorship", "top.window.location='/football/sponsorship.asp'");
	myMenu7.addMenuItem("Donation Form", "top.window.location='/football/donate.asp'");
	window.myMenu.disableDrag = true;

    window.myMenu8 = new Menu("Example 8");
    myMenu8.addMenuItem(myMenu2);
    myMenu8.addMenuItem(myMenu3);
    myMenu8.addMenuItem(myMenu4);
    myMenu8.addMenuItem(myMenu5);
    myMenu8.addMenuItem(myMenu7);


	myMenu.writeMenus();
}

-->
