<!-- 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) {

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 ? 3 : 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 = '#669999', defBack = '#000080';

// Default 'length' of menu items - item height if menu is vertical, width if horizontal.

var defLength = 50;

// 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, '', 5, 0, 60, '#669999', '#000080', '', 'itemText');

// Main DLLR Menu information
// 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.
// An example of a link with a target frame/window as well...
menu[0][1] = new Item('Home', 'http://www.dllr.state.md.us', '', 60, 5, 0);
menu[0][2] = new Item('Occupational & Professional Licensing', 'http://www.dllr.state.md.us/license/occprof/', '', 100, 5, 1);
menu[0][3] = new Item('Labor & Industry', 'http://www.dllr.state.md.us/labor/', '', 60, 5, 2);
menu[0][4] = new Item('Workforce Development & Adult Learning', 'http://www.dllr.state.md.us/employment/', '', 105, 5, 3);
menu[0][5] = new Item('Unemployment Insurance', 'http://www.dllr.state.md.us/employment/unemployment.shtml', '', 100, 5, 5);
menu[0][6] = new Item('Racing', 'http://www.dllr.state.md.us/racing/', '', 60, 5, 9);
menu[0][7] = new Item('Financial Regulation', 'http://www.dllr.state.md.us/finance/', '', 80, 5, 10);
menu[0][8] = new Item('Your DLLR', 'http://www.dllr.state.md.us/aboutdllr/', '', 55, 5, 13);
menu[0][9] = new Item('Ayuda en espa&ntilde;ol', 'http://www.dllr.state.md.us/spanish/', '', 55, 0, 0);


// O&P 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, '>', 0, 22, 100, defOver, defBack, 'itemBorder', 'itemText');
menu[1][1] = new Item('Licensing Boards', 'http://www.dllr.state.md.us/license/occprof', '', 36, 0, 4);
menu[1][2] = new Item('Apply For/Renew Your License', 'http://www.dllr.state.md.us/license/occprof/', '', 66, 0, 0);
menu[1][3] = new Item('Find Someone Who Is Licensed', 'http://www.dllr.state.md.us/pq/', '', 66, 0, 0);
menu[1][4] = new Item('Examination Information and Filing Deadlines', 'http://www.dllr.state.md.us/license/#exam', '', 66, 0, 0);
menu[1][5] = new Item('File a Complaint', 'http://www.dllr.state.md.us/forms/oandpcomplaint.htm', '', 36, 0, 0);
menu[1][6] = new Item('Licensing Contacts', 'http://www.dllr.state.md.us/contactinfo/#licensing', '', 36, 0, 0);
// Non-zero target means this will trigger a popout -- menu[4] which is the 'Reopen' menu.


// Labor & Industry menu.
menu[2] = new Array();
menu[2][0] = new Menu(true, '>', 0, 22, 100, defOver, defBack, 'itemBorder', 'itemText');
// Non-zero target means this will trigger a popout -- menu[4] which is the 'Reopen' menu.
menu[2][1] = new Item('MOSH- Occupational Safety & Health', 'http://www.dllr.state.md.us/labor/mosh.html', '', 80, 0, 6);
menu[2][2] = new Item('Safety Inspection', 'http://www.dllr.state.md.us/labor/safetyinsp.htm', '', 36, 0, 7);
menu[2][3] = new Item('Prevailing Wage for Construction', 'http://www.dllr.state.md.us/labor/prev.html', '', 50, 0, 0);
menu[2][4] = new Item('Living Wage for State Service Contracts', 'http://www.dllr.state.md.us/labor/livingwage.shtml', '', 65, 0, 0);
menu[2][5] = new Item('Apprenticeship and Training', 'http://www.dllr.state.md.us/labor/appr.html', '', 50, 0, 0);
menu[2][6] = new Item('Employment Agencies', 'http://www.dllr.state.md.us/labor/empa.html', '', 36, 0, 0);
menu[2][7] = new Item('Wage and Hour Info', 'http://www.dllr.state.md.us/labor/emps.shtml', '', 36, 0, 0);
menu[2][8] = new Item('Farm Labor Contractor Licensing', 'http://www.dllr.state.md.us/labor/farm.html', '', 60, 0, 0);
menu[2][9] = new Item('State Apprenticeship Training Fund', 'http://www.dllr.state.md.us/labor/apprfund/', '', 60, 0, 0);
menu[2][10] = new Item('Employment Related Posters', 'http://www.dllr.state.md.us/oeope/poster.shtml', '', 50, 0, 0);
menu[2][11] = new Item('New Developments!', 'http://www.dllr.state.md.us/labor/dlinewdev.htm', '', 36, 0, 0);

// Workforce Development menu
menu[3] = new Array();
menu[3][0] = new Menu(true, '>', 0, 22, 110, defOver, defBack, 'itemBorder', 'itemText');
menu[3][1] = new Item('Job Service', 'http://www.dllr.state.md.us/employment/jobserv.shtml', '', 36, 0, 16);
menu[3][2] = new Item('Workforce Investment<br> Act (WIA)', 'http://www.dllr.state.md.us/employment/jtpa.shtml', '', 65, 0, 15);
menu[3][3] = new Item('Maryland Workforce Exchange', 'http://www.mwejobs.com', '', 55, 0, 20);
menu[3][4] = new Item('Career and Workforce Information', 'http://www.dllr.state.md.us/lmi/', '', 55, 0, 0);
menu[3][5] = new Item('Adult Education', 'http://www.dllr.state.md.us/ae/', '', 40, 0, 0);
menu[3][6] = new Item('Correctional Education', 'http://www.dllr.state.md.us/ce', '', 40, 0, 0);
menu[3][7] = new Item('Governor&acute;s Workforce Investment Board (GWIB)', 'http://www.mdworkforce.com', '', 65, 0, 0);
menu[3][8] = new Item('Job Fairs', 'https://mwe.dllr.state.md.us/Shared/EventsCalendar.asp', '', 30, 0, 0);
menu[3][9] = new Item('Demand-Driven Two-Year Workforce Investment Plan', 'http://www.dllr.state.md.us/wdplan/', '', 65, 0, 0);

// O&P Boards index menu
menu[4] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[4][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[4][1] = new Item('Frequently Asked Questions', 'http://www.dllr.state.md.us/faq/#op', '', 40, 0, 0);
menu[4][2] = new Item('Maryland Law and Regulations', 'http://www.dllr.state.md.us/license/occprof/lawindex.htm', '', 40, 0, 0);
menu[4][3] = new Item('Minutes for Public Meetings', 'http://www.dllr.state.md.us/license/occprof/minindex.htm', '', 40, 0, 0);
menu[4][4] = new Item('Board News', 'http://www.dllr.state.md.us/license/news/', '', 30, 0, 0);
menu[4][5] = new Item('Legislation', 'http://www.dllr.state.md.us/license/occprof/legisop.htm', '', 36, 0, 0);

// New Unemployment Insurance index menu
menu[5] = new Array();
menu[5][0] = new Menu(true, '>', 0, 22, 110, defOver, defBack, 'itemBorder', 'itemText');
menu[5][1] = new Item('Information for Employers', 'http://www.dllr.state.md.us/employment/contributions.html', '', 46, 0, 22);
menu[5][2] = new Item('File an Initial Unemployment Insurance Claim', 'https://secure-2.dllr.state.md.us/NetClaims/Welcome.aspx', '', 60, 0, 0);
menu[5][3] = new Item('File Your Biweekly Continued Claim (Webcert)', 'https://secure-2.dllr.state.md.us/webcert/welcome.aspx', '', 66, 0, 0);
menu[5][4] = new Item('Claim Center and Info Telephone Numbers', 'http://www.dllr.state.md.us/employment/officenum.htm', '', 66, 0, 0);
menu[5][5] = new Item('Claimant Frequently Asked Questions', 'http://www.dllr.state.md.us/employment/claimfaq.shtml', '', 66, 0, 0);
menu[5][6] = new Item('UI Appeals', 'https://www.dllr.state.md.us/appeals/', '', 30, 0, 0);
menu[5][7] = new Item('UI Definitions', 'http://www.dllr.state.md.us/employment/uidef.html', '', 30, 0, 0);
menu[5][8] = new Item('UI Benefits Pamphlet', 'http://www.dllr.state.md.us/employment/clmtguide/', '', defLength, 0, 0);
menu[5][9] = new Item('The Maryland New Hire Registry', 'http://newhire-reporting.com/MD-Newhire/default.aspx', '', defLength, 0, 0);

// Help About popout
menu[8] = new Array();
// Leftwards popout with a negative x and y relative to its trigger.
menu[8][0] = new Menu(true, '>', -85, -17, 80, defOver, defBack, 'itemBorder', 'itemText');
menu[8][1] = new Item('Leftwards!<br>And up!', '#', '', 40, 0, 0);


// MOSH index menu
menu[6] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[6][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[6][1] = new Item('Compliance and Enforcement', 'http://www.dllr.state.md.us/labor/comp.htm', '', 46, 0, 0);
menu[6][2] = new Item('Voluntary Compliance: MOSH Consultation Services', 'http://www.dllr.state.md.us/labor/volc.html', '', 85, 0, 0);
menu[6][3] = new Item('Training and Education', 'http://www.dllr.state.md.us/labor/train.html', '', 40, 0, 17);
menu[6][4] = new Item('Recordkeeping and Statistics', 'http://www.dllr.state.md.us/labor/research.htm', '', 36, 0, 0);



// Safety Inspection index menu
menu[7] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[7][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[7][1] = new Item('Amusement Ride Safety', 'http://www.dllr.state.md.us/labor/amus.html', '', 36, 0, 0);
menu[7][2] = new Item('Railroad Safety', 'http://www.dllr.state.md.us/labor/rail.html', '', 36, 0, 0);
menu[7][3] = new Item('Elevator Safety', 'http://www.dllr.state.md.us/labor/elev.html', '', 36, 0, 0);
menu[7][4] = new Item('Boiler & Pressure Vessel Safety', 'http://www.dllr.state.md.us/labor/boil.html', '', 36, 0, 0);


// Racing menu
menu[9] = new Array();
menu[9][0] = new Menu(true, ' ', 0, 22, 90, defOver, defBack, 'itemBorder', 'itemText');
menu[9][1] = new Item('Racing Commission', 'http://www.dllr.state.md.us/racing/comm.html', '', 36, 0, 0);
menu[9][2] = new Item('Race Tracks', 'http://www.dllr.state.md.us/racing/trac.html', '', 36, 0, 0);
menu[9][3] = new Item('Satellite Simulcast Betting Facilities', 'http://www.dllr.state.md.us/racing/bett.html', '', 66, 0, 0);
menu[9][4] = new Item('Frequently Asked Questions', 'http://www.dllr.state.md.us/racing/qsti.html', '', defLength, 0, 0);
menu[9][5] = new Item('Minutes of Public Meetings', 'http://www.dllr.state.md.us/racing/minutesarchive.shtml', '', defLength, 0, 0);
menu[9][6] = new Item('Annual Report', 'http://www.dllr.state.md.us/racing/annrep.htm', '', defLength, 0, 0);
menu[9][7] = new Item('Law and Regulations', 'http://www.dllr.state.md.us/racing/law/', '', defLength, 0, 0);
menu[9][8] = new Item('Multi-Jurisdictional License Application', 'http://www.dllr.state.md.us/racing/licapp.htm', '', 66, 0, 0);

// Financial Regulation menu
menu[10] = new Array();
menu[10][0] = new Menu(true, '>', 0, 22, 100, defOver, defBack, 'itemBorder', 'itemText');
menu[10][1] = new Item('About Us', 'http://www.dllr.state.md.us/finance/frmission.shtml', '', 30, 0, 0);
menu[10][2] = new Item('Consumers', 'http://www.dllr.state.md.us/finance/consumers/', '', 30, 0, 0);
menu[10][3] = new Item('Industry', 'http://www.dllr.state.md.us/finance/industry/', '', 30, 0, 0);
menu[10][4] = new Item('Resources', 'http://www.dllr.state.md.us/finance/frresources.shtml', '', 30, 0, 0);
menu[10][5] = new Item('Contact Us', 'http://www.dllr.state.md.us/finance/frcontacts.shtml', '', 30, 0, 0);


// Financial Regulations Bank and Credit Union index menu
menu[11] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[11][0] = new Menu(true, '', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[11][1] = new Item('Monthly Bank Bulletins', 'http://www.dllr.state.md.us/finance/monthlyact-current.shtml', '', 40, 0, 0);
menu[11][2] = new Item('List of State-Chartered Banks', 'http://www.dllr.state.md.us/finance/mdbanks.html', '', 46, 0, 0);
menu[11][3] = new Item('List of State-Chartered Credit Unions', 'http://www.dllr.state.md.us/finance/creditun.html', '', 56, 0, 0);
menu[11][4] = new Item('Application Forms & Info', 'http://www.dllr.state.md.us/finance/finregforms.htm', '', 40, 0, 0);
menu[11][5] = new Item('Related Links', 'http://www.dllr.state.md.us/finance/finreglinks.htm#linksbank', '', 30, 0, 0);
menu[11][6] = new Item('What Happened to My Bank?', 'http://www.ffiec.gov/nicpubweb/nicweb/SearchForm.aspx', '', 36, 0, 0);
menu[11][7] = new Item('CRA Ratings of Banks', 'http://www.dllr.state.md.us/finance/craratings.htm', '', 40, 0, 0);
menu[11][8] = new Item('Frequently Asked Questions', 'http://www.dllr.state.md.us/finance/bankques.html', '', 40, 0, 0);

// Financial Regulations Consumer Credit index menu
menu[12] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[12][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[12][1] = new Item('Consumer Credit Licensees', 'https://www.dllr.state.md.us/cgi-bin/fin_reg_el/rel2/PQ_Application.cgi?calling_app=Query::PQ_main', '', 46, 0, 0);
menu[12][2] = new Item('Consumer Credit Frequently Asked Questions', 'http://www.dllr.state.md.us/finance/consfaq.html', '', 50, 0, 0);
menu[12][3] = new Item('Information Needed to Obtain a License', 'http://www.dllr.state.md.us/finance/finregslicenses.htm', '', 66, 0, 0);
menu[12][4] = new Item('Advisories', 'http://www.dllr.state.md.us/finance/advisories/', '', 26, 0, 0);
menu[12][5] = new Item('Publications', 'http://www.dllr.state.md.us/finance/consumerpub.htm', '', 26, 0, 0);
menu[12][6] = new Item('Disclosures', 'http://www.dllr.state.md.us/finance/disclosures/', '', 26, 0, 0);
menu[12][7] = new Item('Related Links', 'http://www.dllr.state.md.us/finance/finreglinks.htm#linkscredit', '', 26, 0, 0);

// Your DLLR menu
menu[13] = new Array();
menu[13][0] = new Menu(true, '>', 0, 22, 90, defOver, defBack, 'itemBorder', 'itemText');
menu[13][1] = new Item('About DLLR', 'http://www.dllr.state.md.us/aboutdllr/aboutdllr.shtml', '', 40, 0, 14);
menu[13][2] = new Item('Human Resources', 'http://www.dllr.state.md.us/personnel/', '', 35, 0, 21);
menu[13][3] = new Item('Fair Practices', 'http://www.dllr.state.md.us/oeope/', '', 35, 0, 0);
menu[13][4] = new Item('Procurement', 'http://www.dllr.state.md.us/procurement/', '', 35, 0, 0);
menu[13][5] = new Item('Online Forms', 'http://www.dllr.state.md.us/forms/default.htm', '', 35, 0, 0);
menu[13][6] = new Item('Frequently Asked Questions', 'http://www.dllr.state.md.us/faq', '', defLength, 0, 0);
menu[13][7] = new Item('Browser Updates', 'http://www.dllr.state.md.us/aboutdllr/browser1.shtml', '', 40, 0, 0);
menu[13][8] = new Item('Other State of Maryland Services', 'http://www.dllr.state.md.us/othermdservices', '', defLength, 0, 0);
menu[13][9] = new Item('Inside DLLR', 'http://intranet.dllr.state.md.us', '', 30, 0, 0);


// About DLLR index menu
menu[14] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[14][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[14][1] = new Item('Agency Contacts & Directory of Services', 'http://www.dllr.state.md.us/contactinfo/', '', 56, 0, 0);
menu[14][2] = new Item('News at DLLR', 'http://www.dllr.state.md.us/whatsnews/', '', 30, 0, 0);
menu[14][3] = new Item('Privacy Statement', 'http://www.dllr.state.md.us/aboutdllr/privacystatement.shtml', '', 30, 0, 0);
menu[14][4] = new Item('e-Maryland@<br>DLLR', 'http://www.dllr.state.md.us/aboutdllr/e-marylandtechnology.htm', '', 36, 0, 0);


// WIA index menu
menu[15] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[15][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[15][1] = new Item('MD Dislocated Workers Benefits Guide', 'http://www.dllr.state.md.us/employment/dislocatedworker.shtml', '', 56, 0, 0);
menu[15][2] = new Item('Welfare to Work', 'http://www.dllr.state.md.us/employment/wtw.htm', '', 30, 0, 0);
menu[15][3] = new Item('Trade Adjustment Assistance', 'http://www.dllr.state.md.us/employment/taa.shtml', '', 46, 0, 0);
menu[15][4] = new Item('Local Training Performance Info', 'http://www.dllr.state.md.us/employment/pcschools.htm', '', 46, 0, 0);
menu[15][5] = new Item('Workforce Investment Field Instructions', 'http://www.dllr.state.md.us/employment/wifi/', '', 56, 0, 0);
menu[15][6] = new Item('WARN Log', 'http://www.dllr.state.md.us/employment/warn.shtml', '', 36, 0, 0);
menu[15][7] = new Item('Maryland Business Works', 'http://www.dllr.state.md.us/employment/mbw.shtml', '', 46, 0, 0);

// Job Service index menu
menu[16] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[16][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[16][1] = new Item('Workforce Services for Employers', 'http://www.dllr.state.md.us/employment/busservices.shtml', '', 55, 0, 0);
menu[16][2] = new Item('Job Seeker Services', 'http://www.dllr.state.md.us/employment/jobseekers.shtml', '', 40, 0, 0);
menu[16][3] = new Item('Veterans Services', 'http://www.dllr.state.md.us/employment/veteranservices.shtml', '', 30, 0, 0);
menu[16][4] = new Item('Tax Credits', 'http://www.dllr.state.md.us/employment/taxcreditintroduction.shtml', '', 30, 0, 0);
menu[16][5] = new Item('Foreign Labor Certification', 'https://www.dllr.state.md.us/pw/default.aspx', '', 40, 0, 0);
menu[16][6] = new Item('Agricultural Employers and Workers', 'http://www.dllr.state.md.us/employment/agempworker.shtml', '', 56, 0, 0);
menu[16][7] = new Item('Employment Information for Individuals with Disabilities', 'http://www.dllr.state.md.us/employment/disabilities.shtml', '', 66, 0, 23);



// MOSH Training and Education index menu
menu[17] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[17][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[17][1] = new Item('Seminars', 'http://www.dllr.state.md.us/labor/seminars.htm', '', 25, 0, 0);
menu[17][2] = new Item('Speaker Request Form', 'https://www.dllr.state.md.us/cuwebforms/MOSHSpeaker.aspx', '', 36, 0, 0);
menu[17][3] = new Item('Safety & Health Publications', 'http://www.dllr.state.md.us/labor/pub.html', '', 46, 0, 0);
menu[17][4] = new Item('OSHA Expert Advisors', 'http://www.osha.gov/dts/osta/oshasoft/index.html', '', 36, 0, 0);
menu[17][5] = new Item('Download OSHA PowerPoint Presentations', 'http://www.osha.gov/SLTC/multimedia.html', '', 56, 0, 0);



// Financial Regulation General Information index menu
menu[18] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[18][0] = new Menu(true, '', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[18][1] = new Item('Staff Listing', 'http://www.dllr.state.md.us/finance/finregsstaff.htm', '', 30, 0, 0);


// Financial Regulation Licensing index menu
menu[19] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[19][0] = new Menu(true, '', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[19][1] = new Item('How to Apply for a Consumer Lenders License', 'http://www.dllr.state.md.us/finance/finregslicenses.htm', '', 60, 0, 0);
menu[19][2] = new Item('Frequently Asked Questions', 'http://www.dllr.state.md.us/finance/consfaq.html', '', defLength, 0, 0);


// Maryland Workforce Exchange index menu
menu[20] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[20][0] = new Menu(true, '', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[20][1] = new Item('Find a Job in Maryland', 'https://mwe.dllr.state.md.us/JobSeeker/JobSeekerHome.asp', '', 40, 0, 0);
menu[20][2] = new Item('Find a Maryland One-Stop Career Center', 'http://www.dllr.state.md.us/county/', '', 60, 0, 0);
menu[20][3] = new Item('Find Qualified Workers', 'https://mwe.dllr.state.md.us/Employer/EmployerHome.asp', '', 40, 0, 0);
menu[20][4] = new Item('Find Service Locations of One-Stop Career Center Partners', 'https://mwe.dllr.state.md.us/Shared/FindServiceLocation.asp', '', 70, 0, 0);
menu[20][5] = new Item('Professional Outplacement Assistance Center', 'http://www.dllr.state.md.us/poac/', '', 60, 0, 0);

// Personnel index menu
menu[21] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[21][0] = new Menu(true, '', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[21][1] = new Item('DLLR Employment Opportunities', 'http://www.dllr.state.md.us/personnel/dllremp.shtml', '', 40, 0, 0);

// Unemployment Insurance Employer Information index menu
menu[22] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[22][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[22][1] = new Item('WebTax-File the Quarterly UI Contributions/ Employment Report', 'https://secure-2.dllr.state.md.us/webtax/welcome.aspx', '', 85, 0, 0);
menu[22][2] = new Item('Magnetic Media Specs for Quarterly Filing', 'http://www.dllr.state.md.us/employment/magnetic.html', '', 66, 0, 0);
menu[22][3] = new Item('E-Wage Filing', 'http://www.dllr.state.md.us/employment/ewage.htm', '', 36, 0, 0);
menu[22][4] = new Item('Submit Separation Information Online', 'https://secure-2.dllr.state.md.us/net207/welcome.aspx', '', 40, 0, 0);
menu[22][5] = new Item('Employer Quick Reference Guide', 'http://www.dllr.state.md.us/employment/empguide/', '', 60, 0, 0);
menu[22][6] = new Item('Wage Adjustment Form', 'http://www.dllr.state.md.us/employment/wageadj.htm', '', 40, 0, 0);
menu[22][7] = new Item('Electronic Funds Transfer Info Guide', 'http://www.dllr.state.md.us/employment/achcred.htm', '', 56, 0, 0);
menu[22][8] = new Item('Contact List', 'http://www.dllr.state.md.us/employment/contributions.html#contact', '', 30, 0, 0);
menu[22][9] = new Item('Employer Frequently Asked Questions', 'http://www.dllr.state.md.us/employment/empfaq.html', '', 60, 0, 0);
menu[22][10] = new Item('Publications and Forms', 'http://www.dllr.state.md.us/employment/uitax/uitaxpub.htm', '', 45, 0, 0);
menu[22][11] = new Item('Business Transfer Report', 'http://www.dllr.state.md.us/employment/bustransrep.htm', '', 40, 0, 0);

// Job Service Business Services index menu, revised Employment Information for Individuals with Disabilities - July 10, 2002
menu[23] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[23][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[23][1] = new Item('Job Seeker', 'http://www.dllr.state.md.us/employment/indivwithdisabilities.shtml', '', 26, 0, 0);
menu[23][2] = new Item('Employer', 'http://www.dllr.state.md.us/employment/businessservices1.shtml', '', 26, 0, 0);


// Job Service Job Seeker index menu
menu[24] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[24][0] = new Menu(true, '>', 85, 0, 120, '#669999', '#666699', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[24][1] = new Item('Agricultural Employers & Workers', 'http://www.dllr.state.md.us/employment/agempworker.shtml', '', 56, 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 -->



