/*
 * --- menu level scope settins structure ---
 * note that this structure has changed its format since previous version.
 */
var MENU_POS = [
{
   // item sizes
   'height': 21,
   //'width': 110,
   // 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': 119,
   'block_right': 600,
   // offsets between items of the same level
   'top': 0,
   'left': 111,
   // time in milliseconds before menu is hidden after cursor has gone out
   // of any items
   'hide_delay': 200,
   'expd_delay': 50
},
{
   'height': 17,
   'width': 160,
   'block_top': 21,
   'block_left': 0,
   'top': 19,
   'left': 0,
   'css': {
      'outer' : ['m0l1oout', 'm0l1oover'],
      'inner' : ['m0l1iout', 'm0l1iover']
   }
},
{
   'height': 17,
   'width': 180,
   'block_top': 8,
   'block_left': 100,
   'top': 19,
   'left': 0,
   'css': {
      'outer' : ['m0l1oout', 'm0l1oover'],
      'inner' : ['m0l1iout', 'm0l1iover']
   }
}
];

/*
 * --- menu items ---
 * note that this structure has changed its format since previous version.
 * additional third parameter is added for item scope settings.
 */
var MENU_ITEMS = [
   ['<IMG SRC="/images/Home.png">', '/', '512',
      ['About Us', '/pressroom/aboutus.php', '405'],
      ['Pressroom', '/pressroom/', '405'],
      ['News', '/pressroom/news.php', '405'],
//      ['Link to us!', '/linktous.php', '405'],
      ['Site map', '/sitemap.php', '405']
   ],
   ['<IMG SRC="/images/Registration.png">', null, '414',
      ['Signup', '/signup.php', '352'],
      ['Sign-in', '/signin.php', '352'],
      ['Forgot password', '/forgot.php', '352'],
      ['Unsubscribe', '/unsub.php', '352']
   ],
   ['<IMG SRC="/images/Alerts.png">', null, '352',
      ['Current AMBER Alerts', '/current.php', '254'],
      ['Previous AMBER Alerts', '/previous.php', '254']
   ],
   ['<IMG SRC="/images/Resources.png">', '/resources.php', '265',
      ['About AMBER Alert', '/about.php', '193'],
      ['AMBER Alert Portal Consortium', '/consortinfo/', '193'],
      ['If Your Child is Missing', '/child_missing.php', '193'],
      ['Child Safety', '/safetytips.php', '193'],
      ['Other Resources', '/otherresources.php', '193']
   ],
];