var MENU_POS0 = new Array();
        MENU_POS0['height'] = [20,20,20];
        MENU_POS0['width'] = [130, 150, 0];
        MENU_POS0['block_top'] = [0, 0, 0];
        MENU_POS0['block_left'] = [0, 130, 0];
        MENU_POS0['top'] = [0,22, 0];
        MENU_POS0['left'] = [0,0, 0];
        MENU_POS0['hide_delay'] = [100, 200, 200];


var MENU_STYLES0 = new Array();
        // default item state when it is visible but doesn't have mouse over
        MENU_STYLES0['onmouseout'] = [
                'color', ['#FFFFFF', '#FFFFFF', '#000000'],
                'background', ['transparent', '#003399', '#993366'],
                'fontWeight', ['normal', 'normal', 'normal'],
                'textDecoration', ['none', 'none', 'none'],
        ];
        // state when item has mouse over it
        MENU_STYLES0['onmouseover'] = [
                'color', ['#FFFFFF', '#FFFFFF', '#000000'],
                'background', ['transparent', '#268CE5', '#cc6699'],
                'fontWeight', ['normal', 'bold', 'normal'],
                'textDecoration', ['none', 'none', 'none'],
        ];
        // state when mouse button has been pressed on the item
        MENU_STYLES0['onmousedown'] = [
                'color', ['#FFFFFF', '#FFFFFF', '#000000'],
                'background', ['transparent', '#3366CC', '#cc99ff'],
                'fontWeight', ['normal', 'bold', 'normal'],
                'textDecoration', ['none', 'none', 'none'],
        ];
