//menu objects

function onLoad() {
    window.onResize = onLoad;
    loadMenus();
}

function loadMenus () {
    window.myMenu1 = new Menu("policy");
    myMenu1.addMenuItem("Philosophy", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#philosophy'");
    myMenu1.addMenuItem("Hours of Operation", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#hours'");
    myMenu1.addMenuItem("Two-Way Reporting", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#twoway'");
    myMenu1.addMenuItem("Arrivals/Departures", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#arrival'");
    myMenu1.addMenuItem("Fees", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#fees'");
    myMenu1.addMenuItem("What to Bring", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#whattobring'");
    myMenu1.addMenuItem("Nutrition", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#nutrition'");
    myMenu1.addMenuItem("Health", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#health'");
    myMenu1.addMenuItem("Staff", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#staff'");
	myMenu1.addMenuItem("Programming", "top.bodyFrame.location='http://www.harmony.com.au/policy.html#programming'");
	myMenu1.bgColor = "#167651";
    myMenu1.menuItemBgColor = "#218D61";
    myMenu1.menuHiliteBgColor = "#5B9F78";

    window.myMenu2 = new Menu("facilities");
    myMenu2.addMenuItem("Joeys Room", "top.bodyFrame.location='http://www.harmony.com.au/facilities.html#Joeys'");
    myMenu2.addMenuItem("Possums Room", "top.bodyFrame.location='http://www.harmony.com.au/facilities.html#Possums'");
    myMenu2.addMenuItem("Koalas Room", "top.bodyFrame.location='http://www.harmony.com.au/facilities.html#Koalas'");
    myMenu2.addMenuItem("Bilbies Room", "top.bodyFrame.location='http://www.harmony.com.au/facilities.html#Bilbies'");
	myMenu2.bgColor = "#167651";
    myMenu2.menuItemBgColor = "#218D61";
    myMenu2.menuHiliteBgColor = "#5B9F78";

    window.myMenu3 = new Menu("staff");
    myMenu3.addMenuItem("Robin", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Robin'");
    myMenu3.addMenuItem("Janet", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Janet'");
    myMenu3.addMenuItem("Teresa", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Teresa'");
    myMenu3.addMenuItem("Kelly", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Kelly'");
    myMenu3.addMenuItem("Melissa", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Melissa'");	
    myMenu3.addMenuItem("Yvonne", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Yvonne'");	
 	myMenu3.addMenuItem("Erin", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Erin'");
    myMenu3.addMenuItem("Karlie", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Karlie'");
    myMenu3.addMenuItem("Sabina", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Sabina'");
    myMenu3.addMenuItem("Michaela", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Michaela'");
    myMenu3.addMenuItem("Michelle", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Michelle'");
    myMenu3.addMenuItem("Valerie", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Valerie'");
    myMenu3.addMenuItem("Lizzy", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Lizzy'");
    myMenu3.addMenuItem("Lize", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#Lize'");
    myMenu3.addMenuItem("", "top.bodyFrame.location='http://www.harmony.com.au/staff.html#'");	
	myMenu3.bgColor = "#167651";
    myMenu3.menuItemBgColor = "#218D61";
    myMenu3.menuHiliteBgColor = "#5B9F78";

window.myMenu4 = new Menu("programming");
    myMenu4.addMenuItem("Babies", "top.bodyFrame.location='http://www.harmony.com.au/programming.html#babies'");
    myMenu4.addMenuItem("Pre-Kindy", "top.bodyFrame.location='http://www.harmony.com.au/programming.html#twoyo'");
    myMenu4.addMenuItem("Preschool", "top.bodyFrame.location='http://www.harmony.com.au/programming.html#preschool'");
    myMenu4.addMenuItem("French", "top.bodyFrame.location='http://www.harmony.com.au/programming.html#french'");
    myMenu4.addMenuItem("Computer Gym", "top.bodyFrame.location='http://www.harmony.com.au/programming.html#computing'");
    myMenu4.addMenuItem("Letterland", "top.bodyFrame.location='http://www.harmony.com.au/programming.html#letterland'");
    myMenu4.addMenuItem("Kinda Dance", "top.bodyFrame.location='http://www.harmony.com.au/programming.html#kd'");
	myMenu4.bgColor = "#167651";
    myMenu4.menuItemBgColor = "#218D61";
    myMenu4.menuHiliteBgColor = "#5B9F78";

window.myMenu5 = new Menu("contact");
    myMenu5.addMenuItem("Register Your Interest", "top.bodyFrame.location='http://www.harmony.com.au/registerinterest.html'");
    myMenu5.bgColor = "#167651";
    myMenu5.menuItemBgColor = "#218D61";
    myMenu5.menuHiliteBgColor = "#5B9F78";

    myMenu5.writeMenus();
}
