<!-- // Hide

/****** CASCADING POPUP MENUS v3.1 by Angus Turnbull http://gusnz.cjb.net ******/
// If you want more information, there's a FAQ (Frequently Asked Questions) section on my
// site: http://gusnz.cjb.net, on the 'Popup Menus' page.

var isDOM = (document.getElementById ? true : false);
var isIE  = (document.all ? true: false);
var isNS4 = (navigator.appName=='Netscape' && !isDOM ? true : false);
var isIE4 = ((isIE && !isDOM) ? true : false);
var isDyn = (isDOM || isIE4 || isNS4);

function getRef(id, par)
{
 par = (!par ? document : (par.navigator ? par.document : par));
 return (isIE ? par.all[id] :
  (isDOM ? (par.getElementById?par:par.ownerDocument).getElementById(id) :
  par.layers[id]));
}

function getSty(id, par)
{
 return (isNS4 ? getRef(id, par) : getRef(id, par).style)
}

function LayerObj(id, par)
{
 this.ref = getRef(id, par);
 this.sty = getSty(id, par);

 this.x = function(nX) { if (!isNaN(nX)) this.sty.left = nX; else return parseInt(this.sty.left) }
 this.y = function(nY) { if (!isNaN(nY)) this.sty.top = nY; else return parseInt(this.sty.top) }

 this.vis = function(val) { this.sty.visibility = val }

 this.bgColor = function(col) {
  if (!col) col = isNS4 ? null : 'transparent';
  if (isNS4) this.sty.bgColor = col;
  else this.sty.backgroundColor = col }

 this.bgImage = function(img) {
  if (isNS4) { if (!img) img=null; this.sty.background.src=img }
  else this.sty.backgroundImage=(img?'url('+img+')':'') }

 this.write = function(txt) {
  if (isNS4) with (this.ref.document) { write(txt); close() }
  else this.ref.innerHTML = txt }

 return this;
}
function getLyr(id, par) { return new LayerObj(id, par) }

function setLyr(lVis, docW, par)
{
 if (!this.seq) seq = 0;
 if (!docW) docW = 0;
 var obj = (!par ? (isNS4 ? window : document.body) :
  (!isNS4 && par.navigator ? par.document.body : par));
 var newID = '_js_layer_' + seq++;

 if (isIE) obj.insertAdjacentHTML('beforeEnd', '<div id="' + newID +
  '" style="position:absolute"></div>');
 else if (isDOM)
 {
  var newL = document.createElement('div');
  obj.appendChild(newL);
  with (newL) { id = newID; style.position='absolute' }
 }
 else if (isNS4)
 {
  var newL = new Layer(docW, obj);
  newID = newL.id;
 }

 var lObj = getLyr(newID, par);

 with (lObj) { vis(lVis); x(0); y(0); sty.width=docW }
 return lObj;
}

function popOver(mN, iN) { with (this)
{
 clearTimeout(hideTimer);
 overM = mN;
 overI = iN;
 var thisI = menu[mN][iN];

 if (thisI.onmouseover) thisI.onmouseover();

 litOld = litNow;
 litNow = new Array();
 var litM = mN, litI = iN;
 while(1)
 {
  litNow[litM] = litI;
  if (litM == 'root') break;
  litI = menu[litM][0].parentItem;
  litM = menu[litM][0].parentMenu;
 }

 var same = true;
 for (var z in menu) if (litNow[z] != litOld[z]) same = false;
 if (same) return;

 for (thisM in menu)
 {
  litI = litNow[thisM];
  oldI = litOld[thisM];

  if (litI && (litI != oldI)) changeCol(thisM, litI, true);
  if (oldI && (oldI != litI)) changeCol(thisM, oldI, false);
  if (isNaN(litI)) { menu[thisM][0].lyr.vis('hidden') }
 }

 clearTimeout(showTimer);
 nextMenu = '';
 if (thisI.type == 'sm:')
 {

  var lyrM = menu[mN][0].lyr;

  with (menu[thisI.href][0])
  {
   lyr.x(lyrM.x() + thisI.lyr.x() + eval(offX));
   lyr.y(lyrM.y() + thisI.lyr.y() + eval(offY));

   showStr = objName + '.menu.' + thisI.href + '[0].lyr.vis("visible")';
   nextMenu = thisI.href;
   if (showDelay) showTimer = setTimeout(showStr, showDelay);
   else eval(showStr);
  }
 }
}}

function popChangeCol(mN, iN, isOver) { with (this.menu[mN][iN])
{

 var col = isOver ? overCol : outCol;
 if (col.indexOf('.') == -1) lyr.bgColor(col);
 else lyr.bgImage(col);

 if (overClass == outClass) return;

 if (isNS4) lyr.write(this.getHTML(mN, iN, isOver));

 else with (lyr.ref)
 {
  var chl = (isDOM ? childNodes : children)
  for (var i = 0; i < chl.length; i++) chl[i].className = (isOver ? overClass : outClass);
 }
}}

function popOut(mN, iN) { with (this)
{
 var thisI = menu[mN][iN];

 if (thisI.onmouseout) thisI.onmouseout();

 if (thisI.href != nextMenu) clearTimeout(showTimer);

 var delay = ((mN == 'root') && (thisI.type != 'sm:')) ? 50 : hideDelay;
 hideTimer = setTimeout(objName + '.over("root", 0)', delay);

 overM = 'root';
 overI = 0;
}}

function popClick() { with (this)
{

 if (overI)
 {
  var thisI = menu[overM][overI];

  if (thisI.onclick) thisI.onclick();

  with (thisI) switch (type)
  {

   case 'sm:': return;

   case 'js:': { eval(href); break }

   case '': type = 'window';
   default: if (href) eval(type + '.location.href = "' + href + '"');
  }
 }

 over('root', 0);
}}

function addProps(obj, data, names, addNull)
{
 for (var i = 0; i < names.length; i++) if(i < data.length || addNull) obj[names[i]] = data[i];
}

function ItemStyle()
{

 var names = ['len', 'spacing', 'popInd', 'popPos', 'pad', 'outCol', 'overCol', 'outClass',
  'overClass', 'borderClass'];
 addProps(this, arguments, names, true);
}

function popStartMenu(mName) { with (this)
{

 if (!menu[mName]) { menu[mName] = new Array(); menu[mName][0] = new Object(); }

 actMenu = mName;
 menu[mName].length = 1;
 nextItem = 1;

 var aM = menu[mName][0];

 var names = ['isVert', 'isVert', 'offX','offY', 'width', 'itemSty', 'parentMenu', 'parentItem'];
 addProps(aM, arguments, names, true);

 if (!aM.lyr) aM.lyr = null;
}}

function popAddItem() { with (this)
{

 var aI = menu[actMenu][nextItem++] = new Object();

 var names = ['text', 'href', 'type', 'itemSty', 'len', 'spacing', 'popInd', 'popPos',
  'iW', 'iH', 'lyr'];
 addProps(aI, arguments, names, true);

 var iSty = (arguments[3] ? arguments[3] : menu[actMenu][0].itemSty);

 for (prop in iSty) if (aI[prop] == window.UnDeFiNeD) aI[prop] = iSty[prop];

 if (isNS4 && aI.borderClass) aI.pad++;
}}

function popGetHTML(mN, iN, isOver) { with (this)
{
 var itemStr = '';
 with (menu[mN][iN])
 {
  var textClass = (isOver ? overClass : outClass);

  if ((type == 'sm:') && popInd)
  {
   if (isNS4) itemStr += '<layer class="' + textClass + '" left="'+ ((popPos+iW) % iW) +
    '" top="' + pad + '">' + popInd + '</layer>';
   else itemStr += '<div class="' + textClass + '" style="position: absolute; left: ' +
    ((popPos+iW) % iW) + '; top: ' + pad + '">' + popInd + '</div>';
  }

  if (isNS4) itemStr += (borderClass ? '<span class="' + borderClass + '">' +
   '<spacer type="block" width="' + (iW - 8) + '" height="' + (iH - 8) + '"></span>' : '') +
   '<layer left="' + pad + '" top="' + pad + '" width="' + (iW - (2 * pad)) + '" height="' +
   (iH - (2 * pad)) + '"><a class="' + textClass + '" href="#" ' +
   'onClick="return false" onMouseOver="status=\'\'; return true">' + text + '</a></layer>';

  else itemStr += '<div class="' + textClass + '" style="position: absolute; left: ' + pad +
   '; top: ' + pad + '; width: ' + (iW - (2 * pad)) + '; height: ' + (iH - (2 * pad)) +
   '">' + text + '</div>';
 }
 return itemStr;
}}

function popUpdate() { with (this)
{

 if (!isDyn) return;

 for (mN in menu) with (menu[mN][0])
 {

  var str = '', iX = 0, iY = 0;

  for (var iN = 1; iN < menu[mN].length; iN++) with (menu[mN][iN])
  {

   var itemID = objName + '_' + mN + '_' + iN;

   if (type == 'sm:')
   {
    menu[href][0].parentMenu = mN;
    menu[href][0].parentItem = iN;
   }

   var shrink = (borderClass && isDOM && !isIE ? 2 : 0)

   iW = (isVert ? width : len) - shrink;
   iH = (isVert ? len : width) - shrink;

   var isImg = (outCol.indexOf('.') != -1) ? true : false;

   if (isDOM || isIE4)
   {
    str += '<div id="' + itemID + '" ' + (borderClass ? 'class="' + borderClass + '" ' : '') +
     'style="position: absolute; left: ' + iX + '; top: ' + iY + '; width: ' + iW + '; height: ' +
     iH + '; ' + (outCol ? 'background: ' + (isImg ? 'url('+ outCol+')' : outCol) : '') + '" ';
   }
   if (isNS4)
   {

    str += '<layer id="' + itemID + '" left="' + iX + '" top="' + iY + '" width="' +
     iW + '" height="' + iH + '" ' + (outCol ? (isImg ? 'background="' : 'bgcolor="') +
     outCol + '" ' : '');
   }

   str += 'onMouseOver="' + objName + '.over(\'' + mN + '\',' + iN + ')" ' +
     'onMouseOut="' + objName + '.out(\'' + mN + '\',' + iN + ')">' +
     getHTML(mN, iN, false) + (isNS4 ? '</layer>' : '</div>');

   var spc = (borderClass ? 1 : 0)
   if (isVert) iY += len + spacing - spc;
   else iX += len + spacing - spc;

  }

  if (!lyr) lyr = setLyr('hidden', 3);
  else if (isIE4) setTimeout(objName + '.menu.' + mN + '[0].lyr.sty.width=9', 50);

  with (lyr) { sty.zIndex = 1000; write(str); sty.cursor = (isIE ? 'hand' : 'pointer') }

  for (var i = 1; i < menu[mN].length; i++)
   menu[mN][i].lyr = getLyr(objName + '_' + mN + '_' + i, lyr.ref);

 }

 position();
 menu.root[0].lyr.vis('visible');
}}

function PopupMenu(objName)
{

 this.objName = objName;

 this.showTimer = 0;
 this.hideTimer = 0;
 this.showDelay = 0;
 this.hideDelay = 500;
 this.showMenu = '';

 this.menu =  new Array();

 this.litNow = new Array();
 this.litOld = new Array();

 this.overM = 'root';
 this.overI = 0;

 this.actMenu = '';
 this.nextItem = 1;

 this.over = popOver;
 this.changeCol = popChangeCol;
 this.out = popOut;
 this.click = popClick;
 this.startMenu = popStartMenu;
 this.addItem = popAddItem;
 this.getHTML = popGetHTML;
 this.update = popUpdate;

 this.position = function() { with (this.menu.root[0])
 {

  if (!lyr) return;

  var winWidth = (isIE ? document.body.clientWidth : window.innerWidth)
  lyr.x(eval(offX));
  lyr.y(eval(offY));
 }}

}

// Syntaxes and Information: *** START EDITING HERE, READ THIS SECTION CAREFULLY! ***
//
// 'horizontal Bar' style: items are 16px tall, 0px between, a 'greater than' sign for a popout indicator, 
// 0px padding within items, a black background '#555555', a hover colour
// of #336666, 'itemtext' is the class used for the menu text both normally and highlighted

var hBar = new ItemStyle(16, 0, '&gt;', -10, 0, '#000000', '#336666', 'itemtext', 'itemhover', 'itemborder');

// The 'default Blue' (submenu) items: 20px tall, 0px spacing, a 'greater than' sign for a popout indicator
// (you may wish to use an image tag?), the popout indicator is positioned 10px from the right
// edge of the item, items have 3px padding, some colours, it uses 'itemtext' as the dimmed text
// class but 'itemhover' when it is moused over, and 'itemborder' as the border stylesheet class.

var uhGreen = new ItemStyle(20, 0, '&gt;', -10, 3, '#111111', '#336666', 'itemtext', 'itemhover',
 'itemborder');

// The purplish 'crazy' style, same length but extra 1px spacing (to show up the fancy border) and
// different colours/text and less padding.

var crazy = new ItemStyle(22, 1, '&gt;', -15, 2, '#666699', '#333366', 'crazytext', 'crazyhover',
 'crazyborder');

var pMenu = new PopupMenu('pMenu');
with (pMenu)
{

// *** MOVE THE MENU HERE ***
// The 'root' menu is vertical, positioned at (x = 0, y = 200) and is 175px wide, and items
// by default use the colours and dimensions in the 'hBar' ItemStyle defined above.

startMenu('root', true, 0, 200, 175, hBar);

//*** MAIN CATEGORIES & HEADINGS ***
// The text is a space (&nbsp;) then 'General Information', and this item pops out the 
// 'mGeneral' submenu ('sm:') when moused over


addItem('&nbsp; General Information', 'mGeneral', 'sm:');
addItem('&nbsp; Academic Units', 'mAcUnits', 'sm:');
addItem('&nbsp; Courses', 'mCourses', 'sm:');
addItem('&nbsp; Personnel', 'mPersonnel', 'sm:');
addItem('&nbsp; Reference', 'mReference', 'sm:');
addItem('&nbsp; Downloads', 'mDownloads', 'sm:');
addItem('&nbsp; Previous Catalogs', 'mCatalogs', 'sm:');
addItem('&nbsp; UH Manoa Home', 'http://www.uhm.hawaii.edu', '');

//*** "GENERAL INFORMATION" SUBMENU ITEMS ***
startMenu('mGeneral', true, 175, 0, 225, uhGreen);

// addItem('Text', 'URL', 'action type', optional ItemStyle, length, spacing to next item,
// 'popout indicator HTML', popout indicator position);
// Also note how all the types are '', indicating these links open in the current frame.

addItem('The Chancellor&#146;s Message', 'http://www.catalog.hawaii.edu/02-03/general_information/chancellor.htm', '');
addItem('The University of Hawaii', 'http://www.catalog.hawaii.edu/02-03/general_information/university.htm', '');
addItem('Academic Calendar', 'http://www.catalog.hawaii.edu/02-03/general_information/calendar.htm', '');
addItem('Undergraduate Education', 'mUnderGradEd', 'sm:');
addItem('UH Manoa Core Requirements', 'mManoaCore', 'sm:');
addItem('Graduate Education', 'mGradEd', 'sm:');
addItem('Student Life', 'mStudentLife', 'sm:');
addItem('Tuition, Fees, and Financial Aid', 'mTuition', 'sm:');
addItem('Degrees and Certificates', 'http://www.catalog.hawaii.edu/02-03/general_information/degrees-cert.htm', '');

// *** START Undergrad Education SUBMENU ***
startMenu('mUnderGradEd', true, 225, -80, 225, uhGreen);
addItem('Table of Contents', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/default.htm', '');
addItem('Admission', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/admission.htm', '');
addItem('Application Procedures', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/application.htm', '');
addItem('Academic Advising', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/advising.htm', '');
addItem('Registration and Enrollment', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/registration.htm', '');
addItem('Credits and Grades', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/credits.htm', '');
addItem('Examinations', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/examinations.htm', '');
addItem('Academic Programs', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/programs.htm', '');
addItem('Graduation Requirements <br>and Policies', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/grad-req.htm', '', uhGreen, 32);
addItem('Honors', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/honors.htm', '');
addItem('Academic Probation, <br>Suspension & Dismissal', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/probation.htm', '', uhGreen, 32);
addItem('Special Programs', 'http://www.catalog.hawaii.edu/02-03/general_information/undergrad-ed/special-programs.htm', '');
// *** END Undergrad Education SUBMENU ***

// *** START Manoa General Ed Core SUBMENU ***
startMenu('mManoaCore', true, 225, 0, 225, uhGreen);
addItem('Which Core Should I Be Using?', 'http://www.catalog.hawaii.edu/02-03/general_information/uhm-core/default.htm', '');
addItem('Students Entered UHM Fall 2001 or Later', 'http://www.catalog.hawaii.edu/02-03/general_information/uhm-core/fall-2001orlater/default.htm', '');
addItem('Students Entered UHM<br>Spring 2001 or Earlier', 'http://www.catalog.hawaii.edu/02-03/general_information/uhm-core/spring-2001orearlier/default.htm', '', uhGreen, 32);
// *** END Manoa General Ed Core SUBMENU ***

// *** START Graduate Education SUBMENU ***
startMenu('mGradEd', true, 225, -80, 225, uhGreen);
addItem('Table of Contents', 'http://www.catalog.hawaii.edu/02-03/general_information/grad-ed/default.htm', '');
addItem('Graduate Division', 'http://www.catalog.hawaii.edu/02-03/general_information/grad-ed/grad-div.htm', '');
addItem('Academic Policies', 'http://www.catalog.hawaii.edu/02-03/general_information/grad-ed/academic-policies.htm', '');
addItem('Certificate Programs', 'http://www.catalog.hawaii.edu/02-03/general_information/grad-ed/certificate.htm', '');
addItem('Master&#146;s Degree Programs', 'http://www.catalog.hawaii.edu/02-03/general_information/grad-ed/masters.htm', '');
addItem('Doctoral Degree Programs', 'http://www.catalog.hawaii.edu/02-03/general_information/grad-ed/doctoral.htm', '');
// *** END Graduate Education SUBMENU ***


// *** START Student Life SUBMENU ***
startMenu('mStudentLife', true, 225, -260, 225, uhGreen);
addItem('Table of Contents', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/default.htm', '');
addItem('Dean of Student Services', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/dean.htm', '');
addItem('Housing', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/dean.htm#Housing', '');
addItem('Parking and Traffic', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/dean#Parking.htm', '');
addItem('Security', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/dean.htm#security', '');
addItem('Bookstore', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/books.htm', '');
addItem('Libraries', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/books.htm#Libraries', '');
addItem('Health Services', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/health.htm', '');
addItem('Food Service', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/food.htm', '');
addItem('Employment', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/employment.htm', '');
addItem('Career Services', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/employment.htm#Career', '');
addItem('Child Care', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/child.htm', '');
addItem('Counseling Services', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/counseling.htm', '');
addItem('Support Services', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/support.htm', '');
addItem('Special Learning Opportunities', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/special-learning.htm', '');
addItem('Visual and Performing Arts', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/arts.htm', '');
addItem('Recreation', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/recreation.htm', '');
addItem('Student Organizations', 'http://www.catalog.hawaii.edu/02-03/general_information/student-life/student-organizations.htm', '');
// *** END Student Life SUBMENU ***

// *** START Tuition, Fees & Financial Aid SUBMENU ***
startMenu('mTuition', true, 225, 0, 225, uhGreen);
addItem('Table of Contents', 'http://www.catalog.hawaii.edu/02-03/general_information/tuition-finaid/default.htm', '');
addItem('Tuition, Fees, and Expenses', 'http://www.catalog.hawaii.edu/02-03/general_information/tuition-finaid/tuition.htm', '');
addItem('Financial Aid', 'http://www.catalog.hawaii.edu/02-03/general_information/tuition-finaid/finaid.htm', '');
// *** END Tuition, Fees & Financial Aid SUBMENU ***

//*** START "Academic Units" SUBMENU ***
startMenu('mAcUnits', true, 175, -200, 225, uhGreen);
addItem('Architecture', 'http://www.catalog.hawaii.edu/02-03/academic_units/architecture/default.htm', '');
addItem('Arts & Sciences', 'http://www.catalog.hawaii.edu/02-03/academic_units/arts-sciences/default.htm', '');
addItem('Business Administration', 'http://www.catalog.hawaii.edu/02-03/academic_units/business/default.htm', '');
addItem('Education', 'http://www.catalog.hawaii.edu/02-03/academic_units/education/default.htm', '');
addItem('Engineering', 'http://www.catalog.hawaii.edu/02-03/academic_units/engineering/default.htm', '');
addItem('Hawaiian, Asian & Pacific Studies', 'http://www.catalog.hawaii.edu/02-03/academic_units/hawn-asian-pac/default.htm', '');
addItem('Health Sciences', 'http://www.catalog.hawaii.edu/02-03/academic_units/health-sci/default.htm', '');
addItem('Interdisciplinary Programs', 'http://www.catalog.hawaii.edu/02-03/academic_units/interdisciplinary/default.htm', '');
addItem('Law', 'http://www.catalog.hawaii.edu/02-03/academic_units/law/default.htm', '');
addItem('Medicine', 'http://www.catalog.hawaii.edu/02-03/academic_units/medicine/default.htm', '');
addItem('Nursing and Dental Hygiene', 'http://www.catalog.hawaii.edu/02-03/academic_units/nursing-dental/default.htm', '');
addItem('Ocean and Earth<br>Science and Technology', 'http://www.catalog.hawaii.edu/02-03/academic_units/soest/default.htm', '', uhGreen, 32);
addItem('Outreach', 'http://www.catalog.hawaii.edu/02-03/academic_units/outreach/default.htm', '');
addItem('ROTC', 'http://www.catalog.hawaii.edu/02-03/academic_units/rotc/default.htm', '');
addItem('Social Work', 'http://www.catalog.hawaii.edu/02-03/academic_units/social-work/default.htm', '');
addItem('Travel Industry Management', 'http://www.catalog.hawaii.edu/02-03/academic_units/tim/default.htm', '');
addItem('Tropical Agriculture<br>and Human Resources', 'http://www.catalog.hawaii.edu/02-03/academic_units/ctahr/default.htm', '', uhGreen, 32);
addItem('Instructional Support, Research<br>and Service Units', 'http://www.catalog.hawaii.edu/02-03/academic_units/isrsu/default.htm', '', uhGreen, 32);
//*** END "Academic Units" SUBMENU ITEMS ***

//*** START "Courses" SUBMENU ITEMS ***
startMenu('mCourses', true, 175, 0, 225, uhGreen);
addItem('Overview', 'http://www.catalog.hawaii.edu/02-03/courses/default.htm', '');
addItem('Course Listing by department', 'http://www.catalog.hawaii.edu/02-03/courses/listing.htm', '');
//*** END "Courses" SUBMENU ITEMS ***

//*** START "Personnel" SUBMENU ITEMS ***
startMenu('mPersonnel', true, 175, 0, 225, uhGreen);
addItem('Administration', 'http://www.catalog.hawaii.edu/02-03/personnel/admin.htm', '');
addItem('Faculty', 'http://www.catalog.hawaii.edu/02-03/personnel/faculty/default.htm', '');
addItem('Emeriti Faculty', 'http://www.catalog.hawaii.edu/02-03/personnel/emeriti/default.htm', '');
addItem('ISRSU Staff', 'http://www.catalog.hawaii.edu/02-03/personnel/isrsu/default.htm', '');
//*** END "Personnel" SUBMENU ITEMS ***

//*** START "Reference" SUBMENU ITEMS ***
startMenu('mReference', true, 175, 0, 225, uhGreen);
addItem('Appendix', 'http://www.catalog.hawaii.edu/02-03/reference/appendix.htm', '');
addItem('Glossary', 'http://www.catalog.hawaii.edu/02-03/reference/glossary.htm', '');
addItem('Campus Map', 'http://www.catalog.hawaii.edu/02-03/reference/campus-map.htm', '');
//*** END "Reference" SUBMENU ITEMS ***

//*** START "Catalogs" SUBMENU ITEMS ***
startMenu('mCatalogs', true, 175, 0, 225, uhGreen);
addItem('1997-1999', 'window.open("http://www.catalog.hawaii.edu/97-99")', 'js:');
addItem('1999-2000', 'window.open("http://www.catalog.hawaii.edu/99-00")', 'js:');
addItem('2000-2001', 'window.open("http://www.catalog.hawaii.edu/00-01")', 'js:');
addItem('2001-2002', 'window.open("http://www.catalog.hawaii.edu/01-02")', 'js:');
//*** END "Catalogs" SUBMENU ITEMS ***

//*** START "Downloads" SUBMENU ITEMS ***
startMenu('mDownloads', true, 175, 0, 225, uhGreen);
addItem('Download the 2002-2003 Catalog', 'http://www.catalog.hawaii.edu/02-03/download.htm', '');
//*** END "Downloads" SUBMENU ITEMS ***

}

if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = new Function('evt', 'pMenu.click(); ' +
 'if (isNS4) return document.routeEvent(evt)');

window.onload = new Function('pMenu.update()');
window.onresize = new Function('ns4BugCheck(); pMenu.position()');

var origWinWidth = window.innerWidth;
function ns4BugCheck()
{
 if (isNS4 && origWinWidth != window.innerWidth) location.reload()
}

moveRoot = new Function('with(pMenu.menu.root[0].lyr) x( (x()<100) ? 100 : 5);');

// End Hide -->