// JavaScript Document
/* Tigra Menu template structure */
/*Text based structure with the settings that define menu's 
appearance and behaviour: information about level settings 
such as layout, sizes, offsets, timing, style names etc. 
as well as menu settings such as positioning, scrolling options etc. 
Template structure can be inserted directly in the web page 
inside the <script> tag or linked as external .js file. */

/* Tigra Menu template structure */
/* Tigra Menu template structure */
/* Tigra Menu template structure */
var AMENU_TPL = [
	{
// item sizes
		'height':40,
		'width': 107, 
// offsets between items of the same level
		//'left': 107, 
		//'top': 0,
// time in milliseconds before menu is hidden after cursor has gone out
// of any items
	'hide_delay': 100,
	'expd_delay': 100,
		'css': {
			'inner': ['TM1i0','TM1i1'],
			'outer': ['ATM1o0','ATM1o1']
		},
		// 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_left': 250,
		'block_top': 52
	},
	{
		'height': 20,
		'width': 160,
		'block_left': 0,
		'block_top': 30, //sous menu
		'left': 0,
		'top': 20 ,
		'css': {
			'inner': ['TM0i0','TM0i1'],
			'outer': ['TM0o0','TM0o1']
		}
	}//,
	//{
		//'block_left': 161,
		//'block_top': 3,
		//'top': 20
	//}
];

