// Array Data Load
function loadOptions() {

	// set all your menu variables here
	var sFont = "Verdana, Arial, Helvetica, sans-serif"; // font for menus
	var sFontSize = 10;		// font size for menu items
	var sFontWeight = "bold";	// font weight for menu items
	var sFclr = "#ffffff";		// font colour of menu items
	var sFhclr = "#990000";		// Font highlight colour
	var sBg = "#FCCA4D";			// menu background colour
	var sBgh = "#fdedba";		// menu background highlighted colour
	var sSubMenuImg = ""; // image for indicating submenus exist
	var sLayout = "Vertical"; //"";   // indicates whether the menus will roll down page or go across
	var iMenuWidth = 160;		// menu item width of the popup container
	var iMenuHeight = 20;
	var iMenuXAxis = 157;
	var iMnYaxis = 129;
	
									
window.fw_menu_0 = new Menu('root',iMenuWidth,iMenuHeight,sFont,sFontWeight,sFontSize,sFclr,sFhclr,sBg,sBgh,sSubMenuImg,sLayout,iMenuXAxis,iMnYaxis);
    fw_menu_0.addMenuItem(" Home Page","location='/index.aspx?Menu=Home&SubMenu=Home'");
    fw_menu_0.addMenuItem(" About the School","location='/index.aspx?Menu=Home&SubMenu=About'");
  	fw_menu_0.addMenuItem(" Welcome","location='/index.aspx?Menu=Home&SubMenu=Welcome'");
  	fw_menu_0.addMenuItem(" History","location='/index.aspx?Menu=Home&SubMenu=History'");
  	fw_menu_0.hideOnMouseOut=true;
fw_menu_0.hideOnMouseOut=true;

window.fw_menu_1 = new Menu('root',iMenuWidth,iMenuHeight,sFont,sFontWeight,sFontSize,sFclr,sFhclr,sBg,sBgh,sSubMenuImg,sLayout,iMenuXAxis,iMnYaxis);
    fw_menu_1.addMenuItem(" School Info","location='/index.aspx?Menu=Info&SubMenu=Info'");
   	fw_menu_1.addMenuItem(" News","location='/index.aspx?Menu=Info&SubMenu=News'");
	fw_menu_1.addMenuItem(" Photos","location='/index.aspx?Menu=Info&SubMenu=Photos'");
   	fw_menu_1.addMenuItem(" Calendar","location='/index.aspx?Menu=Info&SubMenu=Calendar'");
   	fw_menu_1.addMenuItem(" Notes","location='/index.aspx?Menu=Info&SubMenu=Notes'");
	fw_menu_1.addMenuItem(" Curriculum","location='/index.aspx?Menu=Info&SubMenu=Curriculum'");
  	fw_menu_1.addMenuItem(" Policies","location='/index.aspx?Menu=Info&SubMenu=Policies'");
  	fw_menu_1.addMenuItem(" Uniform","location='/index.aspx?Menu=Info&SubMenu=Uniform'");
  	  	fw_menu_1.addMenuItem(" Centenary","location='/index.aspx?Menu=Info&SubMenu=Centenary'");
  	fw_menu_1.hideOnMouseOut=true;

window.fw_menu_2 = new Menu('root',iMenuWidth,iMenuHeight,sFont,sFontWeight,sFontSize,sFclr,sFhclr,sBg,sBgh,sSubMenuImg,sLayout,iMenuXAxis,iMnYaxis);
    fw_menu_2.addMenuItem(" Programs","location='/index.aspx?Menu=Programs&SubMenu=Programs'");
  	fw_menu_2.hideOnMouseOut=true;

window.fw_menu_3 = new Menu('root',iMenuWidth,iMenuHeight,sFont,sFontWeight,sFontSize,sFclr,sFhclr,sBg,sBgh,sSubMenuImg,sLayout,iMenuXAxis,iMnYaxis);
	fw_menu_3.addMenuItem(" Special Events","location='/index.aspx?Menu=Events&SubMenu=Events'");
	fw_menu_3.addMenuItem(" Carnivals","location='/index.aspx?Menu=Events&SubMenu=Carnivals'");
	fw_menu_3.addMenuItem(" Sport","location='/index.aspx?Menu=Events&SubMenu=Sport'");
	fw_menu_3.addMenuItem(" Band","location='/index.aspx?Menu=Events&SubMenu=Band'");
	fw_menu_3.addMenuItem(" Choir","location='/index.aspx?Menu=Events&SubMenu=Choir'");
	fw_menu_3.addMenuItem(" Dancesport Challenge","location='/index.aspx?Menu=Events&SubMenu=Challenge'");
	fw_menu_3.addMenuItem(" Performances","location='/index.aspx?Menu=Events&SubMenu=Performances'");
  	fw_menu_3.hideOnMouseOut=true;

					
window.fw_menu_4 = new Menu('root',iMenuWidth,iMenuHeight,sFont,sFontWeight,sFontSize,sFclr,sFhclr,sBg,sBgh,sSubMenuImg,sLayout,iMenuXAxis,iMnYaxis);
	fw_menu_4.addMenuItem(" P and C","location='/index.aspx?Menu=PandC&SubMenu=PandC'");
	fw_menu_4.addMenuItem(" Committee","location='/index.aspx?Menu=PandC&SubMenu=Committee'");
	fw_menu_4.addMenuItem(" Upcoming Events","location='/index.aspx?Menu=PandC&SubMenu=PandCEvents'");
	fw_menu_4.addMenuItem(" Fundraising","location='/index.aspx?Menu=PandC&SubMenu=Fundraising'");
	fw_menu_4.addMenuItem(" School Hall","location='/index.aspx?Menu=PandC&SubMenu=Hall'");
  	fw_menu_4.hideOnMouseOut=true;

fw_menu_0.writeMenus();

			
}
	