
// constants
var initX       = 100; // x-coordinate of top left corner of dropdown menu
var initY       = 30; // y-coordinate of top left corner of dropdown menu
var backColor   = '#A0C6E5'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = ''; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 16;
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
0, // 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 (
));

menuContent [1] = new Array (
-1,
-1,
130,
208, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
95, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));




menuContent [2] = new Array (
-1,
-1,
140,
305, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
95, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));


menuContent [3] = new Array (
-1,
-1,
140,
258, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
124, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Mu&#154;ka konfekcija', 'muska.htm',
'&#142;enska konfekcija', 'zenska.htm',
'De&#269;ija konfekcija', 'decija.htm',
'Program za bebe', 'bebe.htm',
'Namenski proizvodi', 'namenska.htm'
));


menuContent [4] = new Array (
-1,
-1,
140,
330, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
124, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Objekti', 'objekti.htm',
'Oprema', 'oprema.htm',
'Kapaciteti', 'kapaciteti.htm',
'Kadrovi', 'kadrovi.htm'
));


menuContent [5] = 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
0, // 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 (

));

