// write me if you have questions: web.master@male.net

// constants
var initX       = 10; // x-coordinate of top left corner of dropdown menu 
var initY       = 125; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#A0B1C3'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = '#666666'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//


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
138, // the width of current menu list 
-1, // 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 (
'Ashland', '../county/ashland.htm','Cuyahoga - East', '../county/cuye.htm','Cuyahoga - West', '../county/cuyw.htm',
'Geauga', '../county/geauga.htm','Lake', '../county/lake.htm','Lorain', '../county/lorain.htm',
'Medina', '../county/medina.htm','Portage', '../county/portage.htm','Summit', '../county/summit.htm',
'Wayne', '../county/wayne.htm'));

menuContent [1] = new Array ( 
-1, 
-1,
181,
152, // 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 (
'MARCS: 800MHz Statewide System', '../ohio/marcs.htm','State Highway Patrol', '../ohio/osp.htm',
'Department of Natural Resources', '../ohio/odnr.htm','Department of Transportation', '../ohio/odot.htm',
'Turnpike Commission', '../ohio/otc.htm','Emergency Management Agency', '../ohio/oema.htm',
'Ohio National Guard', '../ohio/ong.htm'));

menuContent [2] = new Array ( 
-1, 
4,
135,
282, // 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 (
'Misc. Agencies', '../reg/regional.htm',
'Service/Road Departments', '../reg/service.htm',
'Airports', '../reg/airports.htm',
'BSSA Codes', '../reg/bssa.htm',
'SKYWARN Frequencies', '../reg/skywarn.htm',
'Weather', '../reg/weather.htm',
'NE Ohio Entertainment', '../entertainment.htm',
'NE Ohio Shopping Malls', '../mall.htm'));

menuContent [3] = new Array ( 
-1, 
-1,
130,
425, // 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 (
'About Joe, KB8VJU', '../webmaster.htm','Email Joe, KB8VJU', 'mailto:jrm@neohioscan.com'
));

menuContent [4] = new Array ( 
-1, 
-1,
120,
555, // 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 (
'General Links', '../links.htm','NEOhioScanner EGroup', 'http://groups.yahoo.com/group/NEOhioScanner',
'RadioReference.com','http://www.radioreference.com',
'North Coast Amateur Radio Club', 'http://www.noard.com/NCARC.htm','All Ohio Scanner Club', 'http://www.aosc.org',
'Catholic Diocese of Cleveland', 'http://www.dioceseofcleveland.org','More Links', '../links.htm'
));



