var MENU_POS = [
{
  // size of menu header
  'height': 22,
  'width': 120,

  // position of menu bar in relation to parent element
  'block_top': 0,
  'block_left': 0,

  // offsets between items of the same level
  'top': 0,
  'left': 120,

  // time in milliseconds before menu is hidden after cursor has gone out
  // of any items
  'hide_delay': 200,
  'expd_delay': 200,

  'css' : {
    'outer': ['m0l0oout', 'm0l0oover'],
    'inner': ['m0l0iout', 'm0l0iover']
  }
},

{
  // size of submenu entry
  'height': 22,
  'width': 120,

  // position of submenu in relation to menu header
  'block_top': 22,
  'block_left': 0,

  // offsets between items of the same level
  'top': 22,
  'left': 0,

  'css': {
    'outer' : ['m0l1oout', 'm0l1oover'],
    'inner' : ['m0l1iout', 'm0l1iover']
  }
},

{
  // size of subsubmenu entry
  'height': 22,
  'width': 140,

  // position of subsub menu in relation to submenu
  'block_top': 0,
  'block_left': 120,

  // offsets between items of the same level
  'top': 22,
  'left': 0,

  'css': {
    'outer' : ['m0l2oout', 'm0l2oover'],
    'inner' : ['m0l2iout', 'm0l2iover']
  }
}
]

new menu (MENU_ITEMS, MENU_POS);
var init_state = "done";

