/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	['Home', 'http://node.ecwhost.com/roye/index.html'],
	['Search', null, null,
		['Complete Sea...', 'http://node.ecwhost.com/roye/search.html'],
		['NodeSearch', 'http://www.nodesearch.com']
	],
	['Games', null, null,
		['Games', null, null,
			['Chess', 'http://node.ecwhost.com/roye/games/chess/chess.html'],
			['Tic-Tac-Toe', 'http://node.ecwhost.com/roye/games/ttt.html'],
			['Pong', 'http://node.ecwhost.com/roye/games/pong/pong.html'],
			['Dots', 'http://node.ecwhost.com/roye/games/dots/dots.html'],
			['Tetris', 'http://node.ecwhost.com/roye/games/tetris.html'],
			['Blackjack', 'http://node.ecwhost.com/roye/games/blackjack.html'],
			['Snake', 'http://node.ecwhost.com/roye/games/snake.html']
		],
		['Other', null, null,
			['A.I.', 'http://node.ecwhost.com/roye/games/ai.html'],
			['Blackjack', 'http://node.ecwhost.com/roye/bjk.html'],
			['Fortune', 'http://node.ecwhost.com/roye/games/fortune.html']
		],
		['Links', null, null,
			['Shockwave', 'http://www.shockwave.com'],
			['Clevermedia', 'http://www.clevermedia.com'],
			['Neopets', 'http://www.neopets.com']
		]
	],
	['Stuff', null, null,
		['Picture', 'http://node.ecwhost.com/roye/joke/other.html'],
		['Video', 'http://node.ecwhost.com/roye/joke/other.html'],
		['Other', 'http://node.ecwhost.com/roye/joke/other.html']
	],
	['Functions', null, null,
		['Main', null, null,
			['Calendar', 'http://node.ecwhost.com/roye/cal/calendar.html'],
			['Email Roye', 'http://node.ecwhost.com/roye/email.html'],
			['Testing Lab', 'http://node.ecwhost.com/roye/lab.html'],
			['System Scan']
		],
		['About', 'http://node.ecwhost.com/roye/aboutfx.html']
	],
	['Other', null, null,
		['Help / Faq', 'http://node.ecwhost.com/roye/faq.html'],
		['About Me', 'http://node.ecwhost.com/roye/aboutme.html'],
		['Links', null, null,
			['CU Denver', 'http://www.cudenver.edu/'],
			['CSE Dept.', 'http://www.cse.cudenver.edu'],
			['EE Dept.', 'http://www.cudenver.edu/Academics/Colleges/College+of+Engineering+and+Applied+Science/Electrical+Engineering/default.htm'],
			['UCD Pics.', 'http://node.ecwhost.com/roye/cupics.html']
		]
	]
];



/*
  --- 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 MENU_POS = [
{
	// item sizes
	'height': 22,
	'width': 120,
	// 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': 100,
	'block_left': 8,
	// offsets between items of the same level
	'top': 0,
	'left': 119,
	// 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']
	}
},
{
	'height': 20,
	'width': 120,
	'block_top': 23,
	'block_left': 0,
	'top': 21,
	'left': 0,
	'css': {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
},
{
	'height': 20,
	'width': 105,
	'block_top': 5,
	'block_left': 90,
	'css': {
		'outer': ['m0l2oout', 'm0l2oover'],
		'inner': ['m0l1iout', 'm0l2iover']
	}
}
]





new menu (MENU_ITEMS, MENU_POS);
