/*
You can add and delete submenu  lines within each menu following these instructions ..... using the addMenuItem line - example:
 prospectus_menu.addMenuItem("&nbsp;Welcome","location='welcome.html'");

Alter the text to be entered by changing the text "&nbsp;About Us" to the new text required ie "&nbsp;Insert new text here" . You do need to retain the &nbsp: immediately in front of the name of the link you require.
Specify a new page that this text will link to by changing the location ie "location='welcome.html'" changes to "location='insert new link here.html'

To add or delete a whole line within the submenu then highlight the whole line as follows:-

        prospectus_menu.addMenuItem("&nbsp;Welcome","location='welcome.html'");

either copy and paste in place for a new line, or delete to remove.
 */

 function mmLoadMenus()
        {
        if (window.PGMmenu)
                {return;}






        window.prospectus_menu = new Menu("root",180,16,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#990000","#DEDDDB","#FCD07E","left","middle",3,0,300,0,0,true,true,true,0,true,true);
                                        prospectus_menu.addMenuItem("&nbsp;Key Stage 1 & 2","location='ks2_index.html'");
prospectus_menu.addMenuItem("&nbsp;Key Stage 3 & 4","location='ks3_4_index.html'");

        prospectus_menu.hideOnMouseOut=true;
        prospectus_menu.menuBorder=1;
        prospectus_menu.menuLiteBgColor='#ffffff';
        prospectus_menu.menuBorderBgColor='#555555';
        prospectus_menu.bgColor='#555555';



        window.info_menu = new Menu("root",180,16,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#990000","#DEDDDB","#FCD07E","left","middle",3,0,300,0,0,true,true,true,0,true,true);
                                        info_menu.addMenuItem("&nbsp;Supporters","location='supporters.html'");                                info_menu.addMenuItem("&nbsp;Send feedback","location='feedback.html'");                                        info_menu.addMenuItem("&nbsp;Previous comments","location='comments.html'");

        info_menu.hideOnMouseOut=true;
        info_menu.menuBorder=1;
        info_menu.menuLiteBgColor='#ffffff';
        info_menu.menuBorderBgColor='#555555';
        info_menu.bgColor='#555555';


        window.dept_menu = new Menu("root",180,16,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#990000","#DEDDDB","#FCD07E","left","middle",3,0,300,0,0,true,true,true,0,true,true);
dept_menu.addMenuItem("&nbsp;Festival 2006","location='photo_2006.html'");                                                        dept_menu.addMenuItem("&nbsp;Festival 2007","location='photo_2007.html'");





        dept_menu.hideOnMouseOut=true;
        dept_menu.menuBorder=1;
        dept_menu.menuLiteBgColor='#ffffff';
        dept_menu.menuBorderBgColor='#555555';
        dept_menu.bgColor='#555555';

        window.news_menu = new Menu("root",180,16,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#990000","#DEDDDB","#FCD07E","left","middle",3,0,300,0,0,true,true,true,0,true,true);

news_menu.addMenuItem("&nbsp;Day 1 - 2nd July","location='cal_2nd_july.html'");
news_menu.addMenuItem("&nbsp;Day 2 - 3rd July","location='cal_3rd_july.html'");
news_menu.addMenuItem("&nbsp;Day 3 - 4th July","location='cal_4th_july.html'");
news_menu.addMenuItem("&nbsp;Day 4 - 5th July","location='cal_5th_july.html'");
news_menu.addMenuItem("&nbsp;Day 5 - 6th July","location='cal_6th_july.html'");
news_menu.addMenuItem("&nbsp;Day 6 - 7th July","location='cal_7th_july.html'");
news_menu.addMenuItem("&nbsp;Day 7 - 8th July","location='cal_8th_july.html'");
news_menu.addMenuItem("&nbsp;Day 8 - 9th July","location='cal_9th_july.html'");
news_menu.addMenuItem("&nbsp;Day 9 - 10th July","location='cal_10th_july.html'");
news_menu.addMenuItem("&nbsp;Day 10 - 11th July","location='cal_11th_july.html'");
news_menu.addMenuItem("&nbsp;Day 11 - 12th July","location='cal_12th_july.html'");
news_menu.addMenuItem("&nbsp;Day 12 - 13th July","location='cal_13th_july.html'");
news_menu.addMenuItem("&nbsp;Day 13 - 14th July","location='cal_14th_july.html'");
news_menu.addMenuItem("&nbsp;Day 14 - 15th July","location='cal_15th_july.html'");



        news_menu.hideOnMouseOut=true;
        news_menu.menuBorder=1;
        news_menu.menuLiteBgColor='#ffffff';
        news_menu.menuBorderBgColor='#555555';
        news_menu.bgColor='#555555';

        window.extra_menu = new Menu("root",180,16,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#990000","#DEDDDB","#FCD07E","left","middle",3,0,300,0,0,true,true,true,0,true,true);
                                                                                                        extra_menu.addMenuItem("&nbsp;Promotional Information","location='promo.html'");
extra_menu.addMenuItem("&nbsp;Documents for Schools","location='schooldoc.html'");
extra_menu.addMenuItem("&nbsp;Links / Credits","location='links.html'");



        extra_menu.hideOnMouseOut=true;
        extra_menu.menuBorder=1;
        extra_menu.menuLiteBgColor='#ffffff';
        extra_menu.menuBorderBgColor='#555555';
        extra_menu.bgColor='#555555';


        window.contact_menu = new Menu("root",180,16,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#990000","#DEDDDB","#FCD07E","left","middle",3,0,300,0,0,true,true,true,0,true,true);
                                                                                                        contact_menu.addMenuItem("&nbsp;Contact Us","location='contact.html'");
contact_menu.addMenuItem("&nbsp;Maps","location='map.html'");


        contact_menu.hideOnMouseOut=true;
        contact_menu.menuBorder=1;
        contact_menu.menuLiteBgColor='#ffffff';
        contact_menu.menuBorderBgColor='#555555';
        contact_menu.bgColor='#555555';
        contact_menu.writeMenus();
        }