/*
  Third parameter provides target window specification.
  This structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

var PROGRAMS_MENU_ITEMS = [
   ['Programs&nbsp;&nbsp;&nbsp;&nbsp;', '', null,
      ['Classroom Presentations','CHOICES.htm', {'tw' : 'info'}],
      ['SCI://TECH','SciTech.htm', {'tw' : 'info'}],
      ['Student Intership Program','SIP.htm', {'tw' : 'info'}],
   ],
];

/*
  --- menu level scope settins structure --- 
  note that this structure has changed its format since previous version.
  Now this structure has the same layout as Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var PROGRAMS_MENU_POS = [
{
   // item sizes
   'height': 24,
   'width': 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': 328,
   'block_left': 1,
   // offsets between items of the same level
   'top': 24,
   'left': 0,
   // milliseconds before menu is hidden after onMouseOut
   'hide_delay': 0,
   'css' : {
      'outer' : ['m0l0oout', 'm0l0oover'],
      'inner' : ['m0l0iout', 'm0l0iover']
   }   
},
{
   'height': 24,
   'width': 180,
   'block_top': 0,
   'block_left': 162,
   'css' : {
      'outer' : ['m0l1oout', 'm0l1oover'],
      'inner' : ['m0l1iout', 'm0l1iover']
   }
}
];

new menu (PROGRAMS_MENU_ITEMS, PROGRAMS_MENU_POS);

