// write me if you have questions: web.master@male.net

// constants
var initX       = 5; // x-coordinate of top left corner of dropdown menu 
var initY       = 20; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#E6E6E6'; 
	// the background color of dropdown menu, set empty '' for transparent
var borderColor = '#000099'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 15;
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
124, // 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 (
'K-5 Concepts', '../K-12/K-5concepts.cfm',
'&nbsp;K-5 Standards&nbsp;&nbsp;', '../standards/standards03.cfm',
'Classroom Lessons', '../lessons/lessonsK-5.cfm',
'Econ Web Projects', '../teachsug.cfm',
'Support Resources', '../K-12/K-5.cfm',
'4th Grade THEN', '../nebreconhistory/home.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
124,
-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 (
'6-12 Concepts', '../K-12/6-12concepts.cfm',
'&nbsp;6-12 Standards&nbsp;&nbsp;', '../standards/standards03.cfm',
'Classroom Lessons', '../lessons/lessons6-12.cfm',
'Econ Web Projects', '../teachsug.cfm',
'Support Resources', '../K-12/6-12.cfm'
));

menuContent [2] = new Array ( 
-1, 
-1,
125,
-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 (
'EcEdWeb Home', '../home.cfm',
'K-12 Teaching', '../K-12/home.cfm',
'College Economics', '../teach-ec.cfm',
'Data and Resources', '../econinfo.cfm', 
'Student Web Activ.', '../teachsug.cfm', 
'&nbsp;UNO Center', '../center/home.htm', 
'&nbsp;4th Grade THEN', '../nebreconhistory/home.html',
'&nbsp;&nbsp;NEBA', '../NEBA/home.htm', 
'&nbsp;&nbsp;NAEE', 'http://www.naee.net'
));

menuContent [3] = new Array ( 
0, 
1,
124,
-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 (
'Omaha Districts', '../standards/OmahaDistricts.cfm',
'Nebraska K-4', '../standards/standardsK4.cfm',
'Nebraska All', '../standards/standards03.cfm',
'National Standards', 'http://www.economicsamerica.org/standards/index.html'
));

menuContent [4] = new Array ( 
1, 
1,
124,
-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 (
'Omaha Districts', '../standards/OmahaDistricts.cfm',
'Nebraska 5-12', '../standards/standards5_12.cfm',
'Nebraska All', '../standards/standards03.cfm',
'National Standards', 'http://www.economicsamerica.org/standards/index.html'
));





