/* --- geometry and timing of the menu --- */
var MENU_POS = new Array();

       // rozmiar przycisków
       MENU_POS['height']     = [22, 22, 22];
       MENU_POS['width']      = [149, 180, 270];

       //odległośc od góry i lewej
       MENU_POS['block_top']  = [240, 1, 1];
       MENU_POS['block_left'] = [3, 149, 125];

       // offsets between items of the same level
       MENU_POS['top']        = [22, 23, 23];
       MENU_POS['left']       = [0, 0, 0];

       // time in milliseconds before menu is hidden after cursor has gone out
       // of any items
       MENU_POS['hide_delay'] = [200, 200, 200];

/* --- dynamic menu styles ---
note: you can add as many style properties as you wish but be not all browsers
are able to render them correctly. The only relatively safe properties are
'color' and 'background'.
*/

var MENU_STYLES = new Array();


       // default item state when it is visible but doesn't have mouse over
       MENU_STYLES['onmouseout'] = [
              'background', ['#D8DEE7', '#BDC8D7', '#99BBDD'],
              'color', ['#5D5D5D', '#5D5D5D', '#000000'],
       ];

       // state when item has mouse over it
       MENU_STYLES['onmouseover'] = [
              'background', ['#BDC8D7', '#9DAEC6', '#000000'],
              'color', ['#3F3F3F', '#3F3F3F', '#3F3F3F'],
       ];

       // state when mouse button has been pressed on the item
       MENU_STYLES['onmousedown'] = [
              'background', ['#336699', '#000000', '#000000'],
              'color', ['#ffffff', '#ffffff', '#ffffff'],
       ];
       
