// write me if you have questions: web.master@male.net

// constants
var initX      			= 215; // x-coordinate of top left corner of dropdown menu 
var initY       		= 362;  // y-coordinate of top left corner of dropdown menu 
var backColor   		= '#000000'; // the background color of dropdown menu, set empty '' for transparent
var borderColor 		= 'black'; // the color of dropdown menu border
var borderSize  		= '0'; // the width of dropdown menu border
var itemHeight  		= 10;
var xOverlap    		= 4;
var yOverlap    		= 10;
var xSpacerbullet 	    = '<img src="bullet2.gif" width=13 height=13 border=0> '
//



menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
-1, // the width of current menu list 
190, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Link 11', 'http://www.1.net',
'Link 12', 'http://www.2.net',
'Link 13', 'http://www.3.net'
));


// WITNESS FEES MENU
menuContent [1] = new Array ( 
-1, 
-1,
-1,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
362,  // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'RCW 5.56.010: When witnesses must attend - Fees and allowances', 'http://apps.leg.wa.gov/RCW/default.aspx?cite=5.56.010 target=_blank',
'RCW 2.40.010: Witness fees and mileage', 'http://apps.leg.wa.gov/RCW/default.aspx?cite=2.40.010 target=_blank',
'RCW 2.40.020: Witness fee and mileage in civil cases demandable in advance', 'http://apps.leg.wa.gov/RCW/default.aspx?cite=2.40.020 target=_blank',
'RCW 2.40.030: Travel expense in lieu of mileage in certain cases', 'http://apps.leg.wa.gov/RCW/default.aspx?cite=2.40.030 target=_blank',
'RCW 2.40.040: Attorney of record not entitled to witness fee in case', 'http://apps.leg.wa.gov/RCW/default.aspx?cite=2.40.040 target=_blank'
));

// SUBPOENA MENU
menuContent [2] = new Array ( 
-1, 
-1,
-1,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
391,  // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Washington State CR 45-Court Rule for Subpoena Service', 'http://www.courts.wa.gov/court_rules/Word/supcr45.doc target = _blank',
'Federal Rules of Civil Procedure - Rule 45', 'http://www.law.cornell.edu/rules/frcp/Rule45.htm target = _blank'
));

// USEFUL LINKS MENU
menuContent [3] = new Array ( 
-1, 
-1,
-1,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
304,  // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Washington Courts', 'http://www.courts.wa.gov/ target = _blank',
'Washington Courts - Case Search', 'http://dw.courts.wa.gov/ target = _blank',
'Secretary of State - Corporation Search', 'http://www.secstate.wa.gov/corps/corps_search.aspx target = _blank',
'Small Claim info', 'http://www.courts.wa.gov/newsinfo/resources/?altMenu=smal&fa=newsinfo_jury.scc target = _blank',
'Find Legal Help', 'http://www.wsba.org/atj/contact/legasst.htm target = _blank',
'WA State Paralegal Association', 'http://www.wspaonline.org/ target = _blank',
'Washington State Bar Association', 'http://www.wsba.org/ target = _blank',
'King County Bar Association', 'http://www.kcba.org/ target = _blank',
'NALS... the Association for Legal Professionals', 'http://www.nals.org/ target = _blank',
'East King County Legal Support Professionals', 'http://www.nalsofwashington.org/nals/chapter_pages/east_king.htm target = _blank',
'NALS of Washington', 'http://www.nalsofwashington.org/ target = _blank',
'NALS of Greater Seattle', 'http://www.nalsofwashington.org/nals/chapter_pages/greater_seattle.htm target = _blank',
'NALS of Kitsap County', 'http://www.nalsofkitsap.org/ target = _blank',
'NALS of Pierce County', 'http://www.nalsofwashington.org/nals/chapter_pages/pierce.htm target = _blank',
'NALS of Snohomish County', 'http://www.nalsofwashington.org/nals/chapter_pages/snohomish.htm target = _blank',
'NALS of Spokane', 'http://www.nalsofwashington.org/nals/chapter_pages/spokane.htm target = _blank',
'Association of Legal Administrators', 'http://www.alanet.org/Default.aspx target = _blank',
'Legal Career Opportunities', 'http://www.rhi.com/portal/site/rh-us target = _blank',
'More Legal Career Opportunities', 'http://www.kcba.org/aboutkcba/kcbajobs.aspx target = _blank'
));


