// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['HOME', 'Default.htm'],
	['TREATMENTS', null, null,
		['Face', 'Face.htm', null,
			['Decleor Face Focus', 'Face.htm#Facefocus', null],
			['Decleor Facials', 'Face.htm#Facials', null],
			['Microdermabrasion', 'Face.htm#Micro', null],
			['Eyes', 'Face.htm#Eyes', null],
			['Electrolysis', 'Face.htm#Electrolysis', null],
			['Skin Treatment', 'Face.htm#SkinTreatment', null],
			['Ear Piercing', 'Face.htm#Ears', null],
			['Bleaching', 'Face.htm#Bleaching', null],
			['Make Up', 'Face.htm#Makeup', null],
			['Bridal Beauty Care', 'Face.htm#Bridal', null]
		],
		['Body', 'Body.htm', null,
			['Aromatic Massage', 'Body.htm#Massage', null],
			['Decleor Body Focus', 'Body.htm#Focus', null],
			['Body Bronzing', 'Body.htm#Bronze', null]
		],
		['Waxing', 'Waxing.htm', null,
			['For Women', 'Waxing.htm#Women', null],
			['For Men', 'Waxing.htm#Men', null]
		],
		['Nail Care', 'Nailcare.htm', null],
		['Mens Focus', 'Mensfocus.htm', null],
	],
	['PACKAGES', 'Packages.htm', null],
	['ABOUT', 'About.htm', null]
];


// level scope settins structure
var MENU_POS = [
// root level configuration (level 0)
{
	// item sizes
	'height': 24,
	'width': 163,
	// absolute position of the menu on the page (in pixels)
	// with centered content use Tigra Menu PRO or Tigra Menu GOLD
	'block_top':  260,
	'block_left': 17,
	// offsets between items of the same level (in pixels)
	'top':  45,
	'left': 0,
	// time delay before menu is hidden after cursor left the menu (in milliseconds)
	'hide_delay': 200,
	// submenu expand delay after the rollover of the parent 
	'expd_delay': 200,
	// names of the CSS classes for the menu elements in different states
	// tag: [normal, hover, mousedown]
	'css' : {
		'outer' : ['m0l0oout', 'm0l0oover'],
		'inner' : ['m0l0iout', 'm0l0iover']
	}
},
// sub-menus configuration (level 1)
// any omitted parameters are inherited from parent level
{
	'height': 26,
	'width': 163,
	// position of the submenu relative to top left corner of the parent item
	'block_top': 5,
	'block_left': 150,
	'top': 25,
	'left': 0,
	'css' : {
		'outer' : ['m0l1oout', 'm0l1oover'],
		'inner' : ['m0l1iout', 'm0l1iover']
	}
},
// sub-sub-menus configuration (level 2)
{
	'block_top': 5,
	'block_left': 150
}
// the depth of the menu is not limited
// make sure there is no comma after the last element
];

