// JavaScript Document
// JavaScript Document
//must load each main menu's sub menus first then load teh corrosponding main menu
//each page has a place for 8 main menus: SM_1 to SM_8
//eache menu name and sub name are coded as follows:
//menuSM1_2_4:  First number main menu, second number sub menu and related button # off of
//main menu, third number sub sub menu and related button # off of sub menu
function mmLoadMenus() {


//menuSM_4
if (window.menuSM4) return;
  window.menuSM4 = new Menu("root",160,32,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ff0000","#cccccc","#000000","center","middle",0,0,500,10,7,true,false,true,0,false,false);
  menuSM4.addMenuItem("Middle/High School", "Middle/High School","window.open('HighSchool/StudentActivities.aspx', '_self');");
  menuSM4.addMenuItem("Tuscarora School", "Tuscarora School","window.open('TuscaroraSchool/StudentActivities.aspx', '_self');");
  menuSM4.addMenuItem("Valley School", "Valley School","window.open('ValleySchool/StudentActivities.aspx', '_self');");
   menuSM4.bgImageUp="images/SubMenuOut.gif";
   menuSM4.bgImageOver="images/SubMenuOver.gif";
   menuSM4.fontWeight="bold";
   menuSM4.hideOnMouseOut=true;
   menuSM4.childMenuIcon="images/arrows.gif";
   menuSM4.bgColor='#555555';

//end SM_4

menuSM4.writeMenus();//must be the last menu created to load menus
}