// 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() {

//SM_2
	if (window.menuSM2) return;
  window.menuSM2 = 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);
  menuSM2.addMenuItem("Office Staff","Office Staff","window.open('OfficeStaff.aspx', '_self');");
  menuSM2.addMenuItem("Faculty/Staff","Faculty/Support Staff","window.open('FacultyStaff.aspx', '_self');");
   menuSM2.bgImageUp="../images/SubMenuOut.gif";
   menuSM2.bgImageOver="../images/SubMenuOver.gif";
   menuSM2.fontWeight="bold";
   menuSM2.hideOnMouseOut=true;
   menuSM2.childMenuIcon="../images/arrows.gif";
   menuSM2.bgColor='#555555';
//end SM_2


//SM_3
	if (window.menuSM3) return;
  window.menuSM3 = 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);
  menuSM3.addMenuItem("Athletics","Athletics-Sports","window.open('SA_Athletics.aspx', '_self');");
  menuSM3.addMenuItem("Fine Arts","Fine Arts","window.open('SA_FineArts.aspx', '_self');");
  menuSM3.addMenuItem("Clubs/Organizations","Student Clubs &amp; Orginizations","window.open('SA_Clubs.aspx', '_self');");
   menuSM3.bgImageUp="../images/SubMenuOut.gif";
   menuSM3.bgImageOver="../images/SubMenuOver.gif";
   menuSM3.fontWeight="bold";
   menuSM3.hideOnMouseOut=true;
   menuSM3.childMenuIcon="../images/arrows.gif";
   menuSM3.bgColor='#555555';
//end SM_3

//SM_5
	if (window.menuSM5) return;
  window.menuSM5 = 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);
  menuSM5.addMenuItem("CTE","Career & Technical Education","window.open('D_CTE.aspx', '_self');");
  menuSM5.addMenuItem("English","English Language Arts","window.open('D_English.aspx', '_self');");
  menuSM5.addMenuItem("Fine Arts","Fine & Practical Arts","window.open('D_FineArts.aspx', '_self');");
  menuSM5.addMenuItem("LOTE","Languages Other Than English","window.open('D_LOTE.aspx', '_self');");
  menuSM5.addMenuItem("Library","Library Media Center","window.open('D_Library.aspx', '_self');");
  menuSM5.addMenuItem("Mathematics","Mathematics","window.open('D_Mathematics.aspx', '_self');");
  menuSM5.addMenuItem("Physical Education","Physical Education/Health/Family & Consumer Science","window.open('D_PE.aspx', '_self');");
  menuSM5.addMenuItem("Science","Science","window.open('D_Science.aspx', '_self');");
  menuSM5.addMenuItem("Social Studies","Social Studies","window.open('D_Social Studies.aspx', '_self');");
  
   menuSM5.bgImageUp="../images/SubMenuOut.gif";
   menuSM5.bgImageOver="../images/SubMenuOver.gif";
   menuSM5.fontWeight="bold";
   menuSM5.hideOnMouseOut=true;
   menuSM5.childMenuIcon="../images/arrows.gif";
   menuSM5.bgColor='#555555';
//end SM_5

//menuSM6
if (window.menuSM6) return;
  window.menuSM6 = 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);
  menuSM6.addMenuItem("Career Planning","Career Planning","window.open('G_CareerF.aspx', '_self');");
  menuSM6.addMenuItem("Course Catalog","Course Catalog","window.open('G_CourseCatalog.aspx', '_self');");
  menuSM6.addMenuItem("Transcript Info","Transscript Information","window.open('G_Transscript.aspx', '_self');");
  menuSM6.addMenuItem("Testing Info","Testing Information","window.open('G_TestingInfoF.aspx', '_self');");
  menuSM6.addMenuItem("College Info","College Information","window.open('G_CollegeInfoF.aspx', '_self');");
  menuSM6.addMenuItem("Bell Schedule","Bell Schedule","window.open('BellSchedule.aspx', '_self');");
   menuSM6.bgImageUp="../images/SubMenuOut.gif";
   menuSM6.bgImageOver="../images/SubMenuOver.gif";
   menuSM6.fontWeight="bold";
   menuSM6.hideOnMouseOut=true;
   menuSM6.childMenuIcon="../images/arrows.gif";
   menuSM6.bgColor='#555555';

//end SM_6

menuSM6.writeMenus();//must be the last menu created to load menus
}