/*
    This file defines the pixel location and behaviour of the menu.
    See "http://www.softcomplex.com/products/tigra_menu/docs/" for a
    complete descriptionof all the functions and options.
  --- menu level settings structure --- 
*/
var MENU_POS = [
{
/*	item sizes
	defines the hieght and width of the menu blocks
*/
	'height': 25,
	'width': 76,
	
/*	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.
	This defines the exact pixel location of the binoculars
	button/menu which is level 0
*/
	/*'block_top': 100,*/
	'block_top': 101,
	'block_left': 100,
/*
	below are offsets between items of the same level.
	does not apply here since there is only one item, binoculars
*/
	'top': 0,
	'left': 105,
/*
	hide_delay is the time in milliseconds before menu is hidden after
	cursor has gone out of any items. expd_delay is the delay in opening
	the menu. Setting it to -200 will require a click to expand the menu
	
	Inner and outer references are to the styles in menu.css
	inner is the text, outer is the "box" area around the menu item.
	"out" and "over" are the rollover styles. The styles listed here define
	the binoculars button. Note here only one style is defined.
	Basically we are defining the white text link and it floats over the table cell.
*/
	'hide_delay': 1000,
	'css' : {
		'outer': ['blank', 'blank'],
		'inner': ['m0l0iout', 'm0l0iover']
	}
},

/*
	the items below define the first level menu items 
	(product categories, Predator, nighthunter etc).
	Note they reference the location of the parent level.
	Here all styles have been defined style has been defined
*/

{
	'height': 21,
	'width': 120,
	'block_top': 25,
	'block_left': 0,
	'top': 20,
	'left': 0,
	'expd_delay': 400,
	'css': {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
},

/*
	The items below define the second level menu items.
	this defines the location and behaviour of the specific
	products menu (8x22 Predator, 10x26 Predator, etc).
	Here we are using the same "inner" style used in the first
	level since it is the same.
*/

{
	'height': 21,
	'width': 160,
	'block_top': 0,
	'block_left': 120,
	'top': 20,
	'left': 0,
	'css': {
		'outer': ['m0l2oout', 'm0l2oover'],
		'inner': ['m0l1iout', 'm0l1iover']
	}
}
]
