<!-- Original:  Angus Turnbull -->
<!-- Web Site:  http://gusnz.cjb.net -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var isDOM = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
function getRef(id) {
if (isDOM) return document.getElementById(id);
if (isIE4) return document.all[id];
if (isNS4) return document.layers[id];
}
function getSty(id) {
return (isNS4 ? getRef(id) : getRef(id).style);
} 
// Hide timeout.
var popTimer = 0;
// Array showing highlighted menu items.
var litNow = new Array();
function popOver(menuNum, itemNum) {
clearTimeout(popTimer);
hideAllBut(menuNum);
litNow = getTree(menuNum, itemNum);
changeCol(litNow, true);
targetNum = menu[menuNum][itemNum].target;
if (targetNum > 0) {
thisX = parseInt(menu[menuNum][0].ref.left) + parseInt(menu[menuNum][itemNum].ref.left);
thisY = parseInt(menu[menuNum][0].ref.top) + parseInt(menu[menuNum][itemNum].ref.top);
with (menu[targetNum][0].ref) {
left = parseInt(thisX + menu[targetNum][0].x);
top = parseInt(thisY + menu[targetNum][0].y);
visibility = 'visible';
      }
   }
}
function popOut(menuNum, itemNum) {
if ((menuNum == 0) && !menu[menuNum][itemNum].target)
hideAllBut(0)
else
popTimer = setTimeout('hideAllBut(0)', 500);
}
function getTree(menuNum, itemNum) {

// Array index is the menu number. The contents are null (if that menu is not a parent)
// or the item number in that menu that is an ancestor (to light it up).
itemArray = new Array(menu.length);

while(1) {
itemArray[menuNum] = itemNum;
// If we've reached the top of the hierarchy, return.
if (menuNum == 0) return itemArray;
itemNum = menu[menuNum][0].parentItem;
menuNum = menu[menuNum][0].parentMenu;
   }
}

// Pass an array and a boolean to specify colour change, true = over colour.
function changeCol(changeArray, isOver) {
for (menuCount = 0; menuCount < changeArray.length; menuCount++) {
if (changeArray[menuCount]) {
newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol;
// Change the colours of the div/layer background.
with (menu[menuCount][changeArray[menuCount]].ref) {
if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
         }
      }
   }
}
function hideAllBut(menuNum) {
var keepMenus = getTree(menuNum, 1);
for (count = 0; count < menu.length; count++)
if (!keepMenus[count])
menu[count][0].ref.visibility = 'hidden';
changeCol(litNow, false);
}

// *** MENU CONSTRUCTION FUNCTIONS ***

function Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass) {
// True or false - a vertical menu?
this.isVert = isVert;
// The popout indicator used (if any) for this menu.
this.popInd = popInd
// Position and size settings.
this.x = x;
this.y = y;
this.width = width;
// Colours of menu and items.
this.overCol = overCol;
this.backCol = backCol;
// The stylesheet class used for item borders and the text within items.
this.borderClass = borderClass;
this.textClass = textClass;
// Parent menu and item numbers, indexed later.
this.parentMenu = null;
this.parentItem = null;
// Reference to the object's style properties (set later).
this.ref = null;
}

function Item(text, href, frame, length, spacing, target) {
// You may want to take the space out of the text string because of the level 0 graphic buttons
//this.text =  '&nbsp;' + text;
this.text = text;
this.href = href;
this.frame = frame;
this.length = length;
this.spacing = spacing;
this.target = target;
// Reference to the object's style properties (set later).
this.ref = null;
}

function writeMenus() {
if (!isDOM && !isIE4 && !isNS4) return;

for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) {
// Variable for holding HTML for items and positions of next item.
var str = '', itemX = 0, itemY = 0;

// Remember, items start from 1 in the array (0 is menu object itself, above).
// Also use properties of each item nested in the other with() for construction.
for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem]) {
var itemID = 'menu' + currMenu + 'item' + currItem;

// The width and height of the menu item - dependent on orientation!
var w = (isVert ? width : length);
var h = (isVert ? length : width);

// Create a div or layer text string with appropriate styles/properties.
// Thanks to Paul Maden (www.paulmaden.com) for helping debug this in IE4, apparently
// the width must be a miniumum of 3 for it to work in that browser.
if (isDOM || isIE4) {
str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; ';
if (backCol) str += 'background: ' + backCol + '; ';
str += '" ';
}
if (isNS4) {
str += '<layer id="' + itemID + '" left="' + itemX + '" top="' + itemY + '" width="' +  w + '" height="' + h + '" visibility="inherit" ';
if (backCol) str += 'bgcolor="' + backCol + '" ';
}
if (borderClass) str += 'class="' + borderClass + '" ';

// Add mouseover handlers and finish div/layer.
str += 'onMouseOver="popOver(' + currMenu + ',' + currItem + ')" onMouseOut="popOut(' + currMenu + ',' + currItem + ')">';

// Add contents of item (default: table with link inside).
// In IE/NS6+, add padding if there's a border to emulate NS4's layer padding.
// If a target frame is specified, also add that to the <a> tag.

str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 1 : 0) + '"><tr><td align="left" height="' + (h - 7) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>';
if (target > 0) {

// Set target's parents to this menu item.
menu[target][0].parentMenu = currMenu;
menu[target][0].parentItem = currItem;

// Add a popout indicator.
if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
}
str += '</tr></table>' + (isNS4 ? '</layer>' : '</div>');
if (isVert) itemY += length + spacing;
else itemX += length + spacing;
}
if (isDOM) {
var newDiv = document.createElement('div');
document.getElementsByTagName('body').item(0).appendChild(newDiv);
newDiv.innerHTML = str;
ref = newDiv.style;
ref.position = 'absolute';
ref.visibility = 'hidden';
}

// Insert a div tag to the end of the BODY with menu HTML in place for IE4.
if (isIE4) {
document.body.insertAdjacentHTML('beforeEnd', '<div id="menu' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden">' + str + '</div>');
ref = getSty('menu' + currMenu + 'div');
}

// In NS4, create a reference to a new layer and write the items to it.
if (isNS4) {
ref = new Layer(0);
ref.document.write(str);
ref.document.close();
}

for (currItem = 1; currItem < menu[currMenu].length; currItem++) {
itemName = 'menu' + currMenu + 'item' + currItem;
if (isDOM || isIE4) menu[currMenu][currItem].ref = getSty(itemName);
if (isNS4) menu[currMenu][currItem].ref = ref.document[itemName];
   }
}
with(menu[0][0]) {
ref.left = x;
ref.top = y;
ref.visibility = 'visible';
   }
}


// Syntaxes: *** START EDITING HERE, READ THIS SECTION CAREFULLY! ***
//
// menu[menuNumber][0] = new Menu(Vertical menu? (true/false), 'popout indicator', left, top,
// width, 'mouseover colour', 'background colour', 'border stylesheet', 'text stylesheet');
//
// Left and Top are measured on-the-fly relative to the top-left corner of its trigger, or
// for the root menu, the top-left corner of the page.
//
// menu[menuNumber][itemNumber] = new Item('Text', 'URL', 'target frame', length of menu item,
//  additional spacing to next menu item, number of target menu to popout);
//
// If no target menu (popout) is desired, set it to 0. Likewise, if your site does not use
// frames, pass an empty string as a frame target.
//
// Something that needs explaining - the Vertical Menu setup. You can see most menus below
// are 'true', that is they are vertical, except for the first root menu. The 'length' and
// 'width' of an item depends on its orientation -- length is how long the item runs for in
// the direction of the menu, and width is the lateral dimension of the menu. Just look at
// the examples and tweak the numbers, they'll make sense eventually :).

var menu = new Array();

// Default colours passed to most menu constructors (just passed to functions, not
// a global variable - makes things easier to change later in bulk).
var defOver = '#336699', defBack = '#003366';

// Default 'length' of menu items - item height if menu is vertical, width if horizontal.
var defLength = 18;

// Menu 0 is the special, 'root' menu from which everything else arises.
menu[0] = new Array();
// A non-vertical menu with a few different colours and no popout indicator, as an example.
// *** MOVE ROOT MENU AROUND HERE ***  it's positioned at (5, 0) and is 17px high now.
{menu[0][0] = new Menu(false, '', 10, 78, 35, '#669999', '#006666', '', 'itemText');}
// Notice how the targets are all set to nonzero values...
// The 'length' of each of these items is 40, and there is spacing of 10 to the next item.
// Most of the links are set to '#' hashes, make sure you change them to actual files.
menu[0][1] = new Item('<img src="../main/images/categories_01.gif" name="student" width="80" height="35" border="0" id="student">', '../forstudents/index.cfm', '', 80, 0, 1);
menu[0][2] = new Item('<img src="../main/images/categories_02.gif" name="parent" width="70" height="35" border="0" id="parent">', '../forparents/index.cfm', '', 70, 0, 2);
menu[0][3] = new Item('<img src="../main/images/categories_03.gif" name="school" width="75" height="35" border="0" id="teacher">', '../foremployees/index.cfm', '', 75, 0, 3);
menu[0][4] = new Item('<img src="../main/images/categories_04.gif" name="comm" width="85" height="35" border="0" id="comm">', '../ourcommunity/', '', 85, 0, 4);
menu[0][5] = new Item('<img src="../main/images/categories_05.gif" name="brd" width="85" height="35" border="0" id="brd">', '../govboard/index.cfm', '', 85, 0, 5);
menu[0][6] = new Item('<img src="../main/images/categories_06.gif" name="depts" width="115" height="35" border="0" id="depts">', '../departments/index.cfm', '', 115, 0, 6);


// FOR STUDENTS menu.
menu[1] = new Array();
// The File menu is positioned 0px across and 22 down from its trigger, and is 80 wide.
// All text in this menu has the stylesheet class 'item' -- see the <style> section above.
// We've passed a 'greater-than' sign '>' as a popout indicator. Try an image...?
menu[1][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 0, 35, 170, '#882288', '#660066', 'itemBorder', 'itemText');
menu[1][1] = new Item('&nbsp;Athletics <img src=../images/spacer.gif width=106 height=12 border=0>', '../athletics/', '', defLength, 0, 0);
menu[1][2] = new Item('&nbsp;Career/Technical Education ', 'http://cte.susd.schoolfusion.us', '', defLength, 0, 0);
menu[1][3] = new Item('&nbsp;Code of Conduct <img src=../images/spacer.gif width=59 height=12 border=0>', '../studentservices/CofC.cfm', '', defLength, 0, 0);
menu[1][4] = new Item('&nbsp;Community Schools <img src=../images/spacer.gif width=30 height=12 border=0>', 'http://communityschools.susd.its.schoolfusion.us', '', defLength, 0, 17);
menu[1][5] = new Item('&nbsp;Gifted Program <img src=../images/spacer.gif width=67 height=12 border=0>', '../gifted/', '', defLength, 0, 0);
menu[1][6] = new Item('&nbsp;International <img src=../images/spacer.gif width=80 height=12 border=0><br>&nbsp;&nbsp;&nbsp;Baccalaureate Program <img src=../images/spacer.gif width=15 height=12 border=0>', '../IB/', '', 36, -1, 0);
menu[1][7] = new Item('&nbsp;Library Resources <img src=../images/spacer.gif width=50 height=12 border=0>', '../forstudents/online.cfm', '', defLength, 0, 0);
menu[1][8] = new Item('&nbsp;Menus <img src=../images/spacer.gif width=114 height=12 border=0>', '../nutritionalservices/lunchmenu.cfm', '', defLength, 0, 0);
menu[1][9] = new Item('&nbsp;Service Learning <img src=../images/spacer.gif width=59 height=12 border=0>', '../servicelearning/', '', defLength, 0, 0);
menu[1][10] = new Item('&nbsp;Technology <img src=../images/spacer.gif width=86 height=12 border=0>', '../technology/', '', defLength, 0, 0);
menu[1][11] = new Item('&nbsp;Microsoft Select <img src=../images/spacer.gif width=86 height=12 border=0>', 'http://susd.onthehub.com', '', defLength, 0, 0);
menu[1][12] = new Item('&nbsp;Online Course Registration <img src=../images/spacer.gif width=86 height=12 border=0>', 'https://genesisexp.susd.org', '', defLength, 0, 0);

// FOR PARENTS menu.
menu[2] = new Array();
menu[2][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 0, 35, 192, '#228888', '#006666', 'itemBorder', 'itemText');
menu[2][1] = new Item('&nbsp;Preschool Information <img src=../images/spacer.gif width=48 height=12 border=0>', '../forparents/preschoolinfo.cfm', '', defLength, 0, 0);
menu[2][2] = new Item('&nbsp;Elementary School Information <img src=../images/spacer.gif width=5 height=12 border=0>', '../forparents/eleminfo.cfm', '', defLength, 0, 0);
menu[2][3] = new Item('&nbsp;Middle School Information <img src=../images/spacer.gif width=31 height=12 border=0>', '../forparents/middleinfo.cfm', '', defLength, 0, 0);
menu[2][4] = new Item('&nbsp;High School Information <img src=../images/spacer.gif width=41 height=12 border=0>', '../forparents/highinfo.cfm', '', defLength, 0, 0);
menu[2][5] = new Item('<img src=../images/spacerblack.gif width=190 height=1 border=0>', '', '', 4, 0, 0);

menu[2][6] = new Item('&nbsp;Bus Transportation <img src=../images/spacer.gif width=69 height=12 border=0>', '../Transportation/index.cfm', '', defLength, 0, 0);
menu[2][7] = new Item('&nbsp;Boundary Map <img src=../images/spacer.gif width=95 height=12 border=0>', '../facilities/boundarymap.cfm', '', defLength, 0, 0);
menu[2][8] = new Item('&nbsp;District Calendar <img src=../images/spacer.gif width=81 height=12 border=0>', '../administrativeservices/calendar.cfm', '', defLength, 0, 0);
menu[2][9] = new Item('&nbsp;English Immersion <img src=../images/spacer.gif width=68 height=12 border=0>', '../EIS/', '', defLength, 0, 0);
menu[2][10] = new Item('&nbsp;Food & Nutrition <img src=../images/spacer.gif width=6 height=12 border=0>', '../nutritionalservices/index.cfm', '', defLength, 0, 0);
menu[2][11] = new Item('&nbsp;Frequently Asked Questions  <img src=../images/spacer.gif width=19 height=12 border=0>', '../forparents/faq.cfm', '', defLength, 0, 0);
menu[2][12] = new Item('&nbsp;Open Enrollment <img src=../images/spacer.gif width=80 height=12 border=0>', '../administrativeservices/openenroll.cfm', '', defLength, 0, 0);
menu[2][13] = new Item('&nbsp;Parent Web Links <img src=../images/spacer.gif width=70 height=12 border=0>', '../communications/links.cfm', '', defLength, 0, 0);
menu[2][14] = new Item('&nbsp;Prevention: Adult Resources <img src=../images/spacer.gif width=11 height=12 border=0>', '../studentservices/youthdevelopment.cfm', '', defLength, 0, 10);
menu[2][15] = new Item('&nbsp;Registration <img src=../images/spacer.gif width=106 height=12 border=0>', '../forparents/registration.cfm', '', defLength, 0, 0);
menu[2][16] = new Item('&nbsp;School Tax Credit <img src=../images/spacer.gif width=77 height=12 border=0>', 'http://www.susd.org/district/businessservices/schooltaxcredit.cfm', '', defLength, 0, 0);
menu[2][17] = new Item('&nbsp;School Report Cards <img src=../images/spacer.gif width=58 height=12 border=0>', 'http://www.ade.state.az.us/srcs/find_school.asp', '_blank', defLength, 0, 0);
menu[2][18] = new Item('&nbsp;Start/Release Times <img src=../images/spacer.gif width=60 height=12 border=0>', '../forparents/schooltimes.cfm', '', defLength, 0, 0);
menu[2][19] = new Item('&nbsp;Student Services <img src=../images/spacer.gif width=71 height=12 border=0>', '../excelling/', '', defLength, 0, 12);
menu[2][20] = new Item('&nbsp;Translation/Interpretation <img src=../images/spacer.gif width=30 height=12 border=0>', '../translation/parents.cfm', '', defLength, 0, 0);
menu[2][21] = new Item('&nbsp;Volunteer/Parent Chaperone <img src=../images/spacer.gif width=15 height=12 border=0>', '../partnerships/index.cfm', '', defLength, 0, 0);
menu[2][22] = new Item('&nbsp;Wellness <img src=../images/spacer.gif width=95 height=12 border=0>', '../wellness/', '', defLength, 0, 0);
menu[2][23] = new Item('&nbsp;Parent Input <img src=../images/spacer.gif width=55 height=12 border=0>', '../employment/parentinput.cfm', '', defLength, 0, 0);
menu[2][24] = new Item('&nbsp;Online Course Registration <img src=../images/spacer.gif width=55 height=12 border=0>', 'https://genesisexp.susd.org', '', defLength, 0, 0);


// FOR EMPLOYEES menu
menu[3] = new Array();
menu[3][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 0, 35, 205, '#222288', '#000066', 'itemBorder', 'itemText');
menu[3][1] = new Item('&nbsp;Assistive Technology <img src=../images/spacer.gif width=71 height=12 border=0>', '../specialeducation/assistivetechnology.cfm', '', defLength, 0, 0);
menu[3][2] = new Item('&nbsp;Benefits <img src=../images/spacer.gif width=106 height=12 border=0>', '../benefits/', '', defLength, 0, 0);
menu[3][3] = new Item('&nbsp;Career Ladder <img src=../images/spacer.gif width=106 height=12 border=0>', '../professionaldevelopment/careerlad.cfm', '', defLength, 0, 0);
menu[3][4] = new Item('&nbsp;Curriculum <img src=../images/spacer.gif width=125 height=12 border=0>', '../currinstruction/curriculum.cfm', '', defLength, 0, 0);
menu[3][5] = new Item('&nbsp;English Immersion Studies <img src=../images/spacer.gif width=39 height=12 border=0>', 'http://www.susd.org/EIS', '', defLength, 0, 0);
menu[3][6] = new Item('&nbsp;Employee Groups <img src=../images/spacer.gif width=39 height=12 border=0>', '', '', defLength, 0, 21);
menu[3][7] = new Item('&nbsp;Essential Performance Objectives ', '../professionaldevelopment/essentialst.cfm', '', defLength, 0, 0);
menu[3][8] = new Item('&nbsp;Grants <img src=../images/spacer.gif width=148 height=12 border=0>', '../grants/', '', defLength, 0, 0);
menu[3][9] = new Item('&nbsp;Highly Qualified Teachers <img src=../images/spacer.gif width=42 height=12 border=0>', '../professionaldevelopment/highlyqualifiedteachers.cfm', '', defLength, 0, 0);
menu[3][10] = new Item('&nbsp;Instructional Technology <img src=../images/spacer.gif width=53 height=12 border=0>', '../edtech/its/', '', defLength, 0, 0);
menu[3][11] = new Item('&nbsp;iVisions - from home <img src="../images/globe.gif" width="17" height="17" border="0" align="texttop"> <img src=../images/spacer.gif width=53 height=12 border=0>', 'https://boe.susd.org', '', defLength, 0, 0);
menu[3][12] = new Item('&nbsp;iVisions - on campus <img src="../images/globe.gif" width="17" height="17" border="0" align="texttop"> <img src=../images/spacer.gif width=53 height=12 border=0>', 'http://iVisions/', '', defLength, 0, 0);
menu[3][13] = new Item('&nbsp;Library Resources <img src=../images/spacer.gif width=85 height=12 border=0>', '../forstudents/online.cfm', '', defLength, 0, 0);
menu[3][14] = new Item('&nbsp;New Employees <img src=../images/spacer.gif width=106 height=12 border=0>', '../foremployees/newemployees.cfm', '', defLength, 0, 0);
menu[3][15] = new Item('&nbsp;Payroll Information <img src=../images/spacer.gif width=40 height=12 border=0>', '../employment/payrollinfosheets.cfm', '', defLength, 0, 0);
menu[3][16] = new Item('&nbsp;Outlook Web Access <img src="../images/globe.gif" width="17" height="17" border="0" align="texttop"> <img src=../images/spacer.gif width=40 height=12 border=0>', 'https://ex.susd.org/exchange/', '', defLength, 0, 0);
menu[3][17] = new Item('&nbsp;Professional Development <img src=../images/spacer.gif width=40 height=12 border=0>', '../professionaldevelopment', '', defLength, 0, 0);
menu[3][18] = new Item('&nbsp;SEI Classes <img src=../images/spacer.gif width=87 height=12 border=0>', '../EIS/Classschedule.cfm', '', defLength, 0, 0);
menu[3][19] = new Item('&nbsp;Strictly Classified <img src=../images/spacer.gif width=87 height=12 border=0>', 'http://homeroom.susd.org/humancapital/strictlyclassified.cfm', '', defLength, 0, 0);
menu[3][20] = new Item('&nbsp;SubFinder <img src="../images/globe.gif" width="17" height="17" border="0" align="texttop"> <img src=../images/spacer.gif width=87 height=12 border=0>', 'https://subfinder.susd.org/', '', defLength, 0, 0);
menu[3][21] = new Item('&nbsp;Teacher Resources <img src=../images/spacer.gif width=77 height=12 border=0>', '../currinstruction/resources.cfm', '', defLength, 0, 0);
menu[3][22] = new Item('&nbsp;Translation/Interpretation <img src=../images/spacer.gif width=37 height=12 border=0>', '../translation/teachers&administrators.cfm', '', defLength, 0, 0);
menu[3][23] = new Item('&nbsp;Update Staff Directory Login <img src="../images/globe.gif" width="17" height="17" border="0" align="texttop"> <img src=../images/spacer.gif width=10 height=12 border=0>', 'https://www.susd.org/district/directory/', '', defLength, 0, 0);




// OUR COMMUNITY menu.
menu[4] = new Array();
menu[4][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 0, 35, 165, '#882255', '#660033', 'itemBorder', 'itemText');
menu[4][1] = new Item('&nbsp;About SUSD / History<img src=../images/spacer.gif width=2 height=12 border=0>', '../ourcommunity/about.cfm', '', defLength, 0, 0);
menu[4][2] = new Item('&nbsp;Alumni <img src=../images/spacer.gif width=93 height=12 border=0>', '../ourcommunity/alumni.cfm', '', defLength, 0, 0);
menu[4][3] = new Item('&nbsp;Budget <img src=../images/spacer.gif width=92 height=12 border=0>', '../businessservices/budget.cfm', '', defLength, 0, 0);
menu[4][4] = new Item('&nbsp;Community Events <img src=../images/spacer.gif width=28 height=12 border=0>', '../ourcommunity/events.cfm', '', defLength, 0, 0);
menu[4][5] = new Item('&nbsp;Community Web Links <img src=../images/spacer.gif width=20 height=12 border=0>', '../communications/links.cfm', '', defLength, 0, 0);
menu[4][6] = new Item('&nbsp;Current Job Openings <img src=../images/spacer.gif width=10 height=12 border=0>', '../employment/apply.cfm', '', defLength, 0, 0);
menu[4][7] = new Item('&nbsp;Facility Rentals <img src=../images/spacer.gif width=48 height=12 border=0>', '../facilities/facilityrentals.cfm', '', defLength, 0, 0);
menu[4][8] = new Item('&nbsp;Free e-Newsletters <img src=../images/spacer.gif width=26 height=12 border=0>', '../communications/emss.cfm', '', defLength, 0, 0);
menu[4][9] = new Item('&nbsp;Gift Form <img src="../images/smpdficon.gif" width="15" height="19" border="0" align="texttop"><img src=../images/spacer.gif width=58 height=12 border=0>', '../businessservices/acceptance_gift.pdf', '', defLength, 0, 0);
menu[4][10] = new Item('&nbsp;Legislative Districts  <img src=../images/spacer.gif width=26 height=12 border=0>', '../ourcommunity/Legislative.cfm', '', defLength, 0, 0);
menu[4][11] = new Item('&nbsp;New to the District? <img src=../images/spacer.gif width=25 height=12 border=0>', '../ourcommunity/newcomers.cfm', '', defLength, 0, 0);
menu[4][12] = new Item('&nbsp;Non-Discrimination <img src=../images/spacer.gif width=21 height=12 border=0><br>&nbsp;&nbsp;&nbsp;Legal Notice <img src=../images/spacer.gif width=56 height=12 border=0>', '../ourcommunity/nondiscriminationlegalnotice.cfm', '', 36, -1, 0);
menu[4][13] = new Item('&nbsp;Media Releases <img src=../images/spacer.gif width=41 height=12 border=0>', '../news/media.cfm', '', defLength, 0, 0);
menu[4][14] = new Item('&nbsp;Purchasing <img src=../images/spacer.gif width=68 height=12 border=0>', '../purchasing/', '', defLength, 0, 0);
menu[4][15] = new Item('&nbsp;Research Requests <img src=../images/spacer.gif width=20 height=12 border=0>', '../assess/researchrequest.cfm', '', defLength, 0, 0);
menu[4][16] = new Item('&nbsp;Public Records <img src=../images/spacer.gif width=47 height=12 border=0>', '../legal/publicrecords.cfm', '', defLength, 0, 0);
menu[4][17] = new Item('&nbsp;School Flyers <img src=../images/spacer.gif width=57 height=12 border=0>', '../legal/schoolflyers.cfm', '', defLength, 0, 0);
menu[4][18] = new Item('&nbsp;Superintendent<img src=../images/spacer.gif width=81 height=12 border=0>', '../superintendent/index.cfm', '', defLength, 0, 0);
menu[4][19] = new Item('&nbsp;Trip Reduction Program ', '../transportation/trp.cfm', '', defLength, 0, 0);


// GOVERNING BOARD menu.
menu[5] = new Array();
menu[5][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 0, 35, 140, '#885588', '#663366', 'itemBorder', 'itemText');
menu[5][1] = new Item('&nbsp;Members <img src=../images/spacer.gif width=68 height=12 border=0>', '../govboard/members.cfm', '', defLength, 0, 0);
menu[5][2] = new Item('&nbsp;Policies <img src=../images/spacer.gif width=77 height=12 border=0>', '../govboard/policies.cfm', '', defLength, 0, 0);
menu[5][3] = new Item('&nbsp;Meeting Schedule <img src=../images/spacer.gif width=23 height=12 border=0>', '../govboard/schedule.cfm', '', defLength, 0, 0);
menu[5][4] = new Item('&nbsp;Meeting Documents ', '../govboard/meetings.cfm', '', defLength, 0, 16);
menu[5][5] = new Item('&nbsp;Legislative Agenda <img src=../images/spacer.gif width=17 height=12 border=0>', '../govboard/legislativeagenda.cfm', '', defLength, 0, 0);


// DISTRICT DEPARTMENTS menu.
menu[6] = new Array();
menu[6][0] = new Menu(true, '<img src=../images/arrow_left.gif>', 0, 35, 220, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[6][1] = new Item('&nbsp; A &nbsp;&mdash;&nbsp; F <img src=../images/spacer.gif width=50 height=12 border=0>', '', '', defLength, 0, 23);
menu[6][2] = new Item('&nbsp; G &nbsp;&mdash;&nbsp; N <img src=../images/spacer.gif width=50 height=12 border=0>', '', '', defLength, 0, 18);
menu[6][3] = new Item('&nbsp; O &nbsp;&mdash;&nbsp; Z <img src=../images/spacer.gif width=50 height=12 border=0>', '', '', defLength, 0, 22);
menu[6][4] = new Item('&nbsp;Contact Us <img src=../images/spacer.gif width=130 height=12 border=0>', '../departments/contactus.cfm', '', defLength, 0, 0);
menu[6][5] = new Item('&nbsp;District Goals, Vision and Strategy <img src=../images/spacer.gif width=2 height=12 border=0>', '../departments/goals.cfm', '', defLength, 0, 0);
menu[6][6] = new Item('&nbsp;District Office <img src=../images/spacer.gif width=119 height=12 border=0>', '../departments/edcenter.cfm', '', defLength, 0, 0);
menu[6][7] = new Item('&nbsp;Organizational Chart <img src=../images/spacer.gif width=80 height=12 border=0>', '../departments/orgchart.cfm', '', defLength, 0, 0);





// District Departments A - F
menu[23] = new Array();
menu[23][0] = new Menu(true, '<img src=../images/arrow_left.gif>', -218, 4, 220, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[23][1] = new Item('&nbsp;Alternative Education <img src=../images/spacer.gif width=45 height=12 border=0>', 'http://sierravista.susd.org/', '', defLength, 0, 0);
menu[23][2] = new Item('&nbsp;Athletics <img src=../images/spacer.gif width=123 height=12 border=0>', '../athletics/', '', defLength, 0, 0);
menu[23][3] = new Item('&nbsp;Beginning Teacher Coaches <img src=../images/spacer.gif width=4 height=12 border=0>', '../professionaldevelopment/teachercoaches.cfm', '', defLength, 0, 0);
menu[23][4] = new Item('&nbsp;Behavior Specialists <img src=../images/spacer.gif width=46 height=12 border=0>', '../studentservices/behavior.cfm', '', defLength, 0, 0);
menu[23][5] = new Item('&nbsp;Business Services <img src=../images/spacer.gif width=67 height=12 border=0>', '../businessservices/index.cfm', '', defLength, 0, 0);
menu[23][6] = new Item('&nbsp;Budget <img src=../images/spacer.gif width=92 height=12 border=0>', '../businessservices/budget.cfm', '', defLength, 0, 0);
menu[23][7] = new Item('&nbsp;Career & Technical Education <img src=../images/spacer.gif width=1 height=12 border=0>', 'http://cte.susd.schoolfusion.us', '', defLength, 0, 0);
menu[23][8] = new Item('&nbsp;Communications & Marketing <img src=../images/spacer.gif width=8 height=12 border=0>', '../communications/index.cfm', '', defLength, 0, 20);
menu[23][9] = new Item('&nbsp;Community & Business Partnerships <img src=../images/spacer.gif width=1 height=12 border=0>', '../partnerships', '', defLength, 0, 0);
menu[23][10] = new Item('&nbsp;Community Schools <img src=../images/spacer.gif width=59 height=12 border=0>', 'http://communityschools.susd.its.schoolfusion.us', '', defLength, 0, 0);
menu[23][11] = new Item('&nbsp;Curriculum <img src=../images/spacer.gif width=99 height=12 border=0>', '../currinstruction/curriculum.cfm', '', defLength, 0, 0);
menu[23][12] = new Item('&nbsp;English Immersion <img src=../images/spacer.gif width=55 height=12 border=0>', '../EIS/', '', defLength, 0, 0);
menu[23][13] = new Item('&nbsp;Excelling Teaching & Learning <img src=../images/spacer.gif width=1 height=12 border=0>', '../excelling/index.cfm', '', defLength, 0, 0);
menu[23][14] = new Item('&nbsp;Exceptional Customer Experience', '../experience/index.cfm', '', defLength, 0, 0);
menu[23][15] = new Item('&nbsp;Facility Planning/Construction <img src=../images/spacer.gif width=1 height=12 border=0>', '../facilities/index.cfm', '', defLength, 0, 0);
menu[23][16] = new Item('&nbsp;Finance Services <img src=../images/spacer.gif width=40 height=12 border=0>', '../businessservices/finance.cfm', '', defLength, 0, 0);

// District Departments G - N
menu[18] = new Array();
menu[18][0] = new Menu(true, '<img src=../images/arrow_left.gif>', -198, -14, 200, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[18][1] = new Item('&nbsp;Gifted Program <img src=../images/spacer.gif width=76 height=12 border=0>', '../gifted/', '', defLength, 0, 0);
menu[18][2] = new Item('&nbsp;Grants  <img src=../images/spacer.gif width=125 height=12 border=0>', '../grants/', '', defLength, 0, 0);
menu[18][3] = new Item('&nbsp;Guidance Counselors <img src=../images/spacer.gif width=40 height=12 border=0>', '../studentservices/counselors.cfm', '', defLength, 0, 0);
menu[18][4] = new Item('&nbsp;Health Services <img src=../images/spacer.gif width=73 height=12 border=0>', '../studentservices/healthserv.cfm', '', defLength, 0, 0);
menu[18][5] = new Item('&nbsp;Hearing Impaired <img src=../images/spacer.gif width=63 height=12 border=0>', '../studentservices/hearing.cfm', '', defLength, 0, 0);
menu[18][6] = new Item('&nbsp;Homebound Instruction <img src=../images/spacer.gif width=30 height=12 border=0>', '../studentservices/homeinstr.cfm', '', defLength, 0, 0);
menu[18][7] = new Item('&nbsp;Human Capital <img src=../images/spacer.gif width=88 height=12 border=0>', '../employment/index.cfm', '', defLength, 0, 13);
menu[18][8] = new Item('&nbsp;Instructional Technology <img src=../images/spacer.gif width=26 height=12 border=0>', '../edtech/its', '', defLength, 0, 0);
menu[18][9] = new Item('&nbsp;International <img src=../images/spacer.gif width=88 height=12 border=0><br>&nbsp;&nbsp;&nbsp;Baccalaureate Program <img src=../images/spacer.gif width=23 height=12 border=0>', '../IB/', '', 35, -1, 0);
menu[18][10] = new Item('&nbsp;Legal <img src=../images/spacer.gif width=140 height=12 border=0>', '../legal/index.cfm', '', defLength, 0, 0);
menu[18][11] = new Item('&nbsp;New Teacher Induction <img src=../images/spacer.gif width=33 height=12 border=0>', '../professionaldevelopment/newteacher.cfm', '', defLength, 0, 0);
menu[18][12] = new Item('&nbsp;Nutritional Services & Wellness ', '../nutritionalservices/index.cfm', '', defLength, 0, 0);


// District Departments O - Z
menu[22] = new Array();
menu[22][0] = new Menu(true, '<img src=../images/arrow_left.gif>', -198, -32, 200, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[22][1] = new Item('&nbsp;Open Enrollment <img src=../images/spacer.gif width=65 height=12 border=0>', '../administrativeservices/openenroll.cfm', '', defLength, 0, 0);
menu[22][2] = new Item('&nbsp;Preschool <img src=../images/spacer.gif width=50 height=12 border=0>', '../forparents/preschoolinfo.cfm', '', defLength, 0, 0);
menu[22][3] = new Item('&nbsp;Prevention Programs<img src=../images/spacer.gif width=45 height=12 border=0>', '../studentservices/youthdevelopment.cfm', '', defLength, 0, 0);
menu[22][4] = new Item('&nbsp;Purchasing <img src=../images/spacer.gif width=68 height=12 border=0>', '../purchasing/', '', defLength, 0, 0);
menu[22][5] = new Item('&nbsp;Psychologists <img src=../images/spacer.gif width=81 height=12 border=0>', '../studentservices/psychologist.cfm', '', defLength, 0, 0);
menu[22][6] = new Item('&nbsp;Risk Management <img src=../images/spacer.gif width=11 height=12 border=0>', '../legal/riskmanagement.cfm', '', defLength, 0, 0);
menu[22][7] = new Item('&nbsp;Section 504 <img src=../images/spacer.gif width=92 height=12 border=0>', '../studentservices/section504.cfm', '', defLength, 0, 0);
menu[22][8] = new Item('&nbsp;Service Learning <img src=../images/spacer.gif width=78 height=12 border=0>', '../servicelearning/', '', defLength, 0, 0);
menu[22][9] = new Item('&nbsp;Social Services <img src=../images/spacer.gif width=73 height=12 border=0>', '../studentservices/socialservices.cfm', '', defLength, 0, 0);
menu[22][10] = new Item('&nbsp;Special Education <img src=../images/spacer.gif width=58 height=12 border=0>', '../specialeducation/', '', defLength, 0, 0);
menu[22][11] = new Item('&nbsp;Student Information Management <img src=../images/spacer.gif width=1 height=12 border=0><br>&nbsp;&nbsp;&nbsp; and Accountability Reporting <img src=../images/spacer.gif width=11 height=12 border=0>', '../assess/index.cfm', '', 33, 0, 0);
menu[22][12] = new Item('&nbsp;Technology & Information Systems<img src=../images/spacer.gif width=10 height=12 border=0>', '../technology/', '', defLength, 0, 0);
menu[22][13] = new Item('&nbsp;Translation and Interpretation <img src=../images/spacer.gif width=1 height=12 border=0>', '../translation/', '', defLength, 0, 0);
menu[22][14] = new Item('&nbsp;Transportation <img src=../images/spacer.gif width=90 height=12 border=0>', '../transportation/', '', defLength, 0, 0);
menu[22][15] = new Item('&nbsp;Volunteer Training <img src=../images/spacer.gif width=12 height=12 border=0>', '../partnerships/index.cfm', '', defLength, 0, 0);




// Elementary Schools popout
menu[7] = new Array();
menu[7][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 136, 4, 142, '#222288', '#000066', 'itemBorder', 'itemText');
menu[7][1] = new Item('&nbsp;Anasazi <img src=../images/spacer.gif width=80 height=12 border=0>', '../ourschools/anasazi.cfm', '', defLength, 0, 0);
menu[7][2] = new Item('&nbsp;Arcadia Neighborhood <br>&nbsp;&nbsp;&nbsp;Learning Center <img src=../images/spacer.gif width=34 height=12 border=0>', '../ourschools/anlc.cfm', '', 36, -1, 0);
menu[7][3] = new Item('&nbsp;Aztec <img src=../images/spacer.gif width=95 height=12 border=0>', '../ourschools/aztec.cfm', '', defLength, 0, 0);
menu[7][4] = new Item('&nbsp;Cherokee <img src=../images/spacer.gif width=69 height=12 border=0>', '../ourschools/cherokee.cfm', '', defLength, 0, 0);
menu[7][5] = new Item('&nbsp;Cheyenne Traditional <img src=../images/spacer.gif width=6 height=12 border=0>', '../ourschools/cheyenne.cfm', '', defLength, 0, 0);
menu[7][6] = new Item('&nbsp;Cochise <img src=../images/spacer.gif width=77 height=12 border=0>', '../ourschools/cochise.cfm', '', defLength, 0, 0);
menu[7][7] = new Item('&nbsp;Copper Ridge <img src=../images/spacer.gif width=46 height=12 border=0>', '../ourschools/copperridgeES.cfm', '', defLength, 0, 0);
menu[7][8] = new Item('&nbsp;Desert Canyon <img src=../images/spacer.gif width=41 height=12 border=0>', '../ourschools/desertcanyonES.cfm', '', defLength, 0, 0);
menu[7][9] = new Item('&nbsp;Hohokam <img src=../images/spacer.gif width=69 height=12 border=0>', '../ourschools/hohokam.cfm', '', defLength, 0, 0);
menu[7][10] = new Item('&nbsp;Hopi <img src=../images/spacer.gif width=97 height=12 border=0>', '../ourschools/hopi.cfm', '', defLength, 0, 0);
menu[7][11] = new Item('&nbsp;Kiva <img src=../images/spacer.gif width=99 height=12 border=0>', '../ourschools/kiva.cfm', '', defLength, 0, 0);
menu[7][12] = new Item('&nbsp;Laguna <img src=../images/spacer.gif width=81 height=12 border=0>', '../ourschools/laguna.cfm', '', defLength, 0, 0);
menu[7][13] = new Item('&nbsp;Navajo <img src=../images/spacer.gif width=85 height=12 border=0>', '../ourschools/navajo.cfm', '', defLength, 0, 0);
menu[7][14] = new Item('&nbsp;Pima <img src=../images/spacer.gif width=94 height=12 border=0>', '../ourschools/pima.cfm', '', defLength, 0, 0);
menu[7][15] = new Item('&nbsp;Pueblo <img src=../images/spacer.gif width=84 height=12 border=0>', '../ourschools/pueblo.cfm', '', defLength, 0, 0);
menu[7][16] = new Item('&nbsp;Sequoya <img src=../images/spacer.gif width=75 height=12 border=0>', '../ourschools/sequoya.cfm', '', defLength, 0, 0);
menu[7][17] = new Item('&nbsp;Tavan <img src=../images/spacer.gif width=90 height=12 border=0>', '../ourschools/tavan.cfm', '', defLength, 0, 0);
menu[7][18] = new Item('&nbsp;Tonalea <img src=../images/spacer.gif width=78 height=12 border=0>', '../ourschools/tonalea.cfm', '', defLength, 0, 0);
menu[7][19] = new Item('&nbsp;Yavapai <img src=../images/spacer.gif width=80 height=12 border=0>', '../ourschools/yavapai.cfm', '', defLength, 0, 0);
menu[7][20] = new Item('&nbsp;Zuni <img src=../images/spacer.gif width=99 height=12 border=0>', '../ourschools/zuni.cfm', '', defLength, 0, 0);

// Middle Schools popout
menu[8] = new Array();
menu[8][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 136, 4, 100, '#222288', '#000066', 'itemBorder', 'itemText');
menu[8][1] = new Item('&nbsp;Cocopah <img src=../images/spacer.gif width=30 height=12 border=0>', '../ourschools/cocopah.cfm', '', defLength, 0, 0);
menu[8][2] = new Item('&nbsp;Copper Ridge <img src=../images/spacer.gif width=3 height=12 border=0>', '../ourschools/copperridgeMS.cfm', '', defLength, 0, 0);
menu[8][3] = new Item('&nbsp;Desert Canyon', '../ourschools/desertcanyonMS.cfm', '', defLength, 0, 0);
menu[8][4] = new Item('&nbsp;Ingleside <img src=../images/spacer.gif width=29 height=12 border=0>', '../ourschools/ingleside.cfm', '', defLength, 0, 0);
menu[8][5] = new Item('&nbsp;Mohave <img src=../images/spacer.gif width=38 height=12 border=0>', '../ourschools/mohave.cfm', '', defLength, 0, 0);
menu[8][6] = new Item('&nbsp;Mountainside <img src=../images/spacer.gif width=7 height=12 border=0>', '../ourschools/mountainside.cfm', '', defLength, 0, 0);
menu[8][7] = new Item('&nbsp;Supai <img src=../images/spacer.gif width=49 height=12 border=0>', '../ourschools/supai.cfm', '', defLength, 0, 0);

// High Schools popout
menu[9] = new Array();
menu[9][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 136, 4, 110, '#222288', '#000066', 'itemborder', 'itemtext');
menu[9][1] = new Item('&nbsp;Arcadia <img src=../images/spacer.gif width=50 height=12 border=0>', '../ourschools/arcadia.cfm', '', defLength, 0, 0);
menu[9][2] = new Item('&nbsp;Chaparral <img src=../images/spacer.gif width=36 height=12 border=0>', '../ourschools/chaparral.cfm', '', defLength, 0, 0);
menu[9][3] = new Item('&nbsp;Coronado <img src=../images/spacer.gif width=36 height=12 border=0>', '../ourschools/coronado.cfm', '', defLength, 0, 0);
menu[9][4] = new Item('&nbsp;Desert Mountain <img src=../images/spacer.gif width=1 height=12 border=0>', '../ourschools/desertmountain.cfm', '', defLength, 0, 0);
menu[9][5] = new Item('&nbsp;Saguaro <img src=../images/spacer.gif width=44 height=12 border=0>', '../ourschools/saguaro.cfm', '', defLength, 0, 0);

// Prevention Education popout
menu[10] = new Array();
menu[10][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 190, 4, 160, '#228888', '#006666', 'itemBorder', 'itemText');
menu[10][1] = new Item('&nbsp;Asset Newsletter <img src="../images/smpdficon.gif" width="15" height="19" border="0" align="texttop"><img src=../images/spacer.gif width=32 height=12 border=0>', '../studentservices/assetnewsletter.pdf', '', defLength, 0, 0);
menu[10][2] = new Item('&nbsp;Lions Quest <img src=../images/spacer.gif width=74 height=12 border=0>', '../studentservices/lionsquest.cfm', '', defLength, 0, 0);
menu[10][3] = new Item('&nbsp;Your Child and the Law <img src="../images/smpdficon.gif" width="15" height="19" border="0" align="texttop">', '../forparents/documents/teenpreventionbooklet.pdf', '', defLength, 0, 0);



// Student Services popout
menu[12] = new Array();
menu[12][0] = new Menu(true, '<img src=../images/arrow_left.gif>', 190, -168, 150, '#228888', '#006666', 'itemBorder', 'itemText');
menu[12][1] = new Item('&nbsp;Alternative Education <img src=../images/spacer.gif width=17 height=12 border=0>', 'http://sierravista.susd.org/', '', defLength, 0, 0);
menu[12][2] = new Item('&nbsp;Behavior Specialists <img src=../images/spacer.gif width=19 height=12 border=0>', '../studentservices/behavior.cfm', '', defLength, 0, 0);
menu[12][3] = new Item('&nbsp;Code of Conduct <img src=../images/spacer.gif width=39 height=12 border=0>', '../studentservices/CofC.cfm', '', defLength, 0, 0);
menu[12][4] = new Item('&nbsp;Guidance Counselors <img src=../images/spacer.gif width=10 height=12 border=0>', '../studentservices/counselors.cfm', '', defLength, 0, 0);
menu[12][5] = new Item('&nbsp;Health Services <img src=../images/spacer.gif width=45 height=12 border=0>', '../studentservices/healthserv.cfm', '', defLength, 0, 0);
menu[12][6] = new Item('&nbsp;Hearing Impaired <img src=../images/spacer.gif width=35 height=12 border=0>', '../studentservices/hearing.cfm', '', defLength, 0, 0);
menu[12][7] = new Item('&nbsp;Homebound Instruction <img src=../images/spacer.gif width=2 height=12 border=0>', '../studentservices/homeinstr.cfm', '', defLength, 0, 0);
menu[12][8] = new Item('&nbsp;Prevention Programs <img src=../images/spacer.gif width=15 height=12 border=0>', '../studentservices/youthdevelopment.cfm', '', defLength, 0, 0);
menu[12][9] = new Item('&nbsp;Psychologists <img src=../images/spacer.gif width=54 height=12 border=0>', '../studentservices/psychologist.cfm', '', defLength, 0, 0);
menu[12][10] = new Item('&nbsp;Section 504 <img src=../images/spacer.gif width=66 height=12 border=0>', '../studentservices/section504.cfm', '', defLength, 0, 0);
menu[12][11] = new Item('&nbsp;Social Services <img src=../images/spacer.gif width=47 height=12 border=0>', '../studentservices/socialservices.cfm', '', defLength, 0, 0);
menu[12][12] = new Item('&nbsp;Special Education <img src=../images/spacer.gif width=32 height=12 border=0>', '../specialeducation/', '', defLength, 0, 0);


// Human Resources popout
menu[13] = new Array();
menu[13][0] = new Menu(true, '<img src=../images/arrow_left.gif>', -168, -84, 170, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[13][1] = new Item('&nbsp;Benefits <img src=../images/spacer.gif width=106 height=12 border=0>', '../benefits/', '', defLength, 0, 0);
menu[13][2] = new Item('&nbsp;Contact Directory <img src=../images/spacer.gif width=58 height=12 border=0>', '../employment/contacts.cfm', '', defLength, 0, 0);
menu[13][3] = new Item('&nbsp;Current Job Openings <img src=../images/spacer.gif width=18 height=12 border=0>', '../employment/apply.cfm', '', defLength, 0, 0);
menu[13][4] = new Item('&nbsp;How to Apply <img src=../images/spacer.gif width=80 height=12 border=0>', '../employment/apply.cfm', '', defLength, 0, 0);
menu[13][5] = new Item('&nbsp;Payroll Information Sheets', '../employment/payrollinfosheets.cfm', '', defLength, 0, 0);
menu[13][6] = new Item('&nbsp;Salary Schedules <img src=../images/spacer.gif width=55 height=12 border=0>', '../employment/salary.cfm', '', defLength, 0, 0);
menu[13][7] = new Item('&nbsp;Substitute Information<img src=../images/spacer.gif width=34 height=12 border=0>', '../employment/substituteinfo.cfm', '', defLength, 0, 0);
menu[13][8] = new Item('&nbsp;View and Print Applications <img src=../images/spacer.gif width=3 height=12 border=0>', '../employment/applications.cfm', '', defLength, 0, 0);
menu[13][9] = new Item('&nbsp;Work Schedules <img src=../images/spacer.gif width=55 height=12 border=0>', '../administrativeservices/calendar.cfm', '', defLength, 0, 0);


// Job Openings popout
menu[14] = new Array();
menu[14][0] = new Menu(true, '<img src=../images/arrow_left.gif>', -93, 4, 95, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[14][1] = new Item('&nbsp;Administrative ', '../employment/hrsadmin.cfm', '', defLength, 0, 0);
menu[14][2] = new Item('&nbsp;Certificated <img src=../images/spacer.gif width=14 height=12 border=0>', '../employment/hrscert.cfm', '', defLength, 0, 0);
menu[14][3] = new Item('&nbsp;Classified <img src=../images/spacer.gif width=20 height=12 border=0>', '../employment/hrsclass.cfm', '', defLength, 0, 0);
menu[14][4] = new Item('&nbsp;Substitute <img src=../images/spacer.gif width=21 height=12 border=0>', '../employment/hrsubstitute.cfm', '', defLength, 0, 0);


// Legal popout
menu[15] = new Array();
menu[15][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', -128, 4, 130, '#2288BB', '#006699', 'itemBorder', 'itemText');

// Board Meeting Documents popout
menu[16] = new Array();
menu[16][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 136, 4, 90, '#885588', '#663366', 'itemBorder', 'itemText');
menu[16][1] = new Item('&nbsp;Agenda <img src=../images/spacer.gif width=28 height=12 border=0>', '../govboard/meetings.cfm', '', defLength, 0, 0);
menu[16][2] = new Item('&nbsp;Minutes <img src=../images/spacer.gif width=28 height=12 border=0>', '../govboard/meetings.cfm', '', defLength, 0, 0);
menu[16][3] = new Item('&nbsp;Spotlights <img src=../images/spacer.gif width=16 height=12 border=0>', '../govboard/meetings.cfm', '', defLength, 0, 0);
menu[16][4] = new Item('&nbsp;Board Briefs <img src=../images/spacer.gif width=3 height=12 border=0>', '../govboard/boardbriefs.cfm', '', defLength, 0, 0);
menu[16][5] = new Item('&nbsp;Presentations', '../govboard/meetings.cfm', '', defLength, 0, 0);

// Community Schools popout
menu[17] = new Array();
menu[17][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', 166, 4, 150, '#882288', '#660066', 'itemBorder', 'itemText');
menu[17][1] = new Item('&nbsp;Evening School <img src=../images/spacer.gif width=45 height=12 border=0>', 'http://communityschools.susd.its.schoolfusion.us', '', defLength, 0, 0);
menu[17][2] = new Item('&nbsp;Kid&lsquo;s Club <img src=../images/spacer.gif width=74 height=12 border=0>', 'http://communityschools.susd.its.schoolfusion.us', '', defLength, 0, 0);
menu[17][3] = new Item('&nbsp;Pre Kindergarden <img src=../images/spacer.gif width=3 height=12 border=0>', 'http://communityschools.susd.its.schoolfusion.us', '', defLength, 0, 0);
menu[17][4] = new Item('&nbsp;Summer School <img src=../images/spacer.gif width=42 height=12 border=0>', 'http://communityschools.susd.its.schoolfusion.us', '', defLength, 0, 0);

// Business Services popout
menu[19] = new Array();
menu[19][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', -148, 4, 150, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[19][1] = new Item('&nbsp;Annual Financial Report ', '../businessservices/2005AFR.pdf', '', defLength, 0, 0);

// Communications popout
menu[20] = new Array();
menu[20][0] = new Menu(true, '<img src=../images/arrow_rt.gif>', -155, 4, 157, '#2288BB', '#006699', 'itemBorder', 'itemText');
menu[20][1] = new Item('&nbsp;<i>Board Briefs</i> <img src=../images/spacer.gif width=70 height=12 border=0>', '../govboard/boardbriefs.cfm', '', defLength, 0, 0);
menu[20][2] = new Item('&nbsp;Community Connection <img src=../images/spacer.gif width=8 height=12 border=0>', '../communications/emss.cfm', '', defLength, 0, 0);
menu[20][3] = new Item('&nbsp;Media Releases <img src=../images/spacer.gif width=47 height=12 border=0>', '../news/media.cfm', '', defLength, 0, 0);
menu[20][4] = new Item('&nbsp;Web Links <img src=../images/spacer.gif width=79 height=12 border=0>', '../communications/links.cfm', '', defLength, 0, 0);
menu[20][5] = new Item('<img src=../images/spacer.gif width=1 height=12 border=0>', '', '', 4, 0, 0);
menu[20][6] = new Item('&nbsp;Public Records (Legal)', '../legal/publicrecords.cfm', '', defLength, 0, 0);
menu[20][7] = new Item('&nbsp;School Flyers (Legal)', '../legal/schoolflyers.cfm', '', defLength, 0, 0);

// Employee Groups popout
menu[21] = new Array();
menu[21][0] = new Menu(true, '<img src=../images/arrow_left.gif>', 200, 4, 120, '#222288', '#000066', 'itemBorder', 'itemText');
menu[21][1] = new Item('&nbsp;Administrative <img src="../images/globe.gif" width="17" height="17" border="0" align="texttop"> <img src=../images/spacer.gif width=1 height=12 border=0>', 'http://homeroom.susd.org/foradmin/saa.cfm', '', defLength, 0, 0);
menu[21][2] = new Item('&nbsp;Certified <img src="http://www.susd.org/district/images/globearrow.gif" alt= "globe icon" title="This link will take you to a site over which the Scottsdale Unified School District has no control. The District assumes no responsibility for the content of the material contained at that site or for the accuracy of any information that is found there. The contents of any site or link not maintained by the District does not necessarily reflect the opinions, standards or policies of the Scottsdale Unified School District, its officials, agents or employees." width="17" height="17" hspace="3" border="0" align="texttop"> <img src=../images/spacer.gif width=1 height=12 border=0>', 'http://www.scottsdalesea.com/', '', defLength, 0, 0);
menu[21][3] = new Item('&nbsp;Classified <img src="http://www.susd.org/district/images/globearrow.gif" alt= "globe icon" title="This link will take you to a site over which the Scottsdale Unified School District has no control. The District assumes no responsibility for the content of the material contained at that site or for the accuracy of any information that is found there. The contents of any site or link not maintained by the District does not necessarily reflect the opinions, standards or policies of the Scottsdale Unified School District, its officials, agents or employees." width="17" height="17" hspace="3" border="0" align="texttop"> <img src=../images/spacer.gif width=1 height=12 border=0>', 'http://www.scottsdalesspa.com/', '', defLength, 0, 0);


// Principals popout
menu[11] = new Array();

menu[11][0] = new Menu(true, '<img src=../images/arrow_left.gif>', 190, 4, 120, '#228888', '#006666', 'itemBorder', 'itemText');

menu[11][1] = new Item('&nbsp;Principals Meeting Schedule <img src=../images/spacer.gif width=64 height=12 border=0>', '../foradmin/PrincipalMeetingSchedule0809_2.doc', '', defLength, 0, 0);

menu[11][2] = new Item('&nbsp; Assistant Principal Agenda Form <img src=../images/spacer.gif width=34 height=12 border=0>', '../foradmin/PrincipalMeetingAgendaForm.cfm   ../assess/testresults.cfm', '', defLength, 0, 0);

menu[11][3] = new Item('&nbsp;Middle/High School Agenda Form <img src=../images/spacer.gif width=1 height=12 border=0>', '../foradmin/PrincipalMeetingAgendaForm.cfm', '', defLength, 0, 0);

menu[11][3] = new Item('&nbsp;Middle/High School Agenda Form <img src=../images/spacer.gif width=1 height=12 border=0>', '../foradmin/PrincipalMeetingAgendaForm.cfm', '', defLength, 0, 0);


// *** OPTIONAL CODE FROM HERE DOWN ***

// These two lines handle the window resize bug in NS4. See <body onResize="...">.
// I recommend you leave this here as otherwise when you resize NS4's width menus are hidden.

var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');


// This is a quick snippet that captures all clicks on the document and hides the menus
// every time you click. Use if you want.

if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = clickHandle;

function clickHandle(evt)
{
 if (isNS4) document.routeEvent(evt);
 hideAllBut(0);
}


// This is just the moving command for the example.

function moveRoot()
{
 with(menu[0][0].ref) left = ((parseInt(left) < 100) ? 100 : 5);
}
//  End -->