
var MENU_POS1 = {
  // item sizes for different levels of menu
  'height': [24, 20, 20],
  'width': [165, 190, 150],
  // 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': [120, 23, 5],
  'block_left': [5, 0, 130],
  // offsets between items of the same level
  'top': [0, 21, 21],
  'left': [141, 0, 0],
  // time in milliseconds before menu is hidden after cursor has gone out
  // of any items
  'hide_delay': [200, 200, 200]
};


var MENU_STYLES1 = {
  // default item state when it is visible but doesn't have mouse over
  'onmouseout': [
    'color', ['#FFFFFF', '#FFFFFF', '#000000'],
    'background', ['#22532E', '#002E6D', '#3FB7C9'],
    'textDecoration', ['none', 'none', 'none'],
    'fontWeight', ['normal', 'normal', 'normal'],
  ],
  // state when item has mouse over it
  'onmouseover': [
    'color', ['#FFFFFF', '#FFFFFF', '#000000'],
    'background', ['#CD711F', '#663AF6', '#88CFDA'],
    'textDecoration', ['none', 'none', 'none'],
    'fontWeight', ['normal', 'normal', 'normal'],
  ],
  // state when mouse button has been pressed on the item
  'onmousedown': [
    'color', ['#FFFFFF', '#FFFFFF', '#000000'],
    'background', ['#CD711F', '#CD711F', '#88CFDA'],
    'textDecoration', ['none', 'none', 'none'],
    'fontWeight', ['normal', 'normal', 'normal'],
  ]
};

