var MENU_POS1 = {
    // item widths for first menu level
    'width0': [48, 11, 72, 11, 66, 11, 68, 11, 62, 11, 44, 11, 64],
    // item sizes for different levels of menu
    'height': [16, 16, 16, 16, 16],
    'width': [95, 108, 120, 130, 100],
    // menu block offset from the origin:
    //  for root level origin is upper left corner of the page
    //  for other levels origin is upper left corner of parent item
    'block_top': [134, 16, 0, 0, 0],
    'block_left': [null, 0, 100, 116, 120],
    // offsets between items of the same level
    'top': [0, 16, 16, 16, 16],
    'left': [79, 0, 0, 0, 0],
    'hide_delay': [1000, 1000, 1000, 1000, 1000]
};

var MENU_STYLES1 = {
    // default item state when it is visible but doesn't have mouse over
    'onmouseout': [
        'color', ['white', 'white', 'white', 'white', 'white'], 
        'background', ['black', '#666666', '#444444', '#666666', '#444444'],
        'textDecoration', ['none', 'none', 'none', 'none', 'none'],
        'fontWeight', ['bold', 'normal', 'normal', 'normal', 'normal'],
    ],
    // state when item has mouse over it
    'onmouseover': [
        'color', ['black', 'white', 'white', 'white', 'white'], 
        'background', ['silver', '#4488DD', '#4488DD', '#4488DD', '#4488DD'],
        'textDecoration', ['none', 'none', 'none', 'none', 'none'],
        'fontWeight', ['bold', 'normal', 'normal', 'normal', 'normal'],
    ],
    // state when mouse button has been pressed on the item
    'onmousedown': [
        'color', ['black', 'white', 'white', 'white', 'white'], 
        'background', ['green', 'green', 'green', 'green', 'green'],
        'textDecoration', ['none', 'none', 'none', 'none', 'none'],
        'fontWeight', ['bold', 'normal', 'normal', 'normal', 'normal'],
    ]
};
    