/*
  --- 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_ABOUT = new Array();
	// item sizes
	MENU_POS_ABOUT['height']	= [ 35, 26];
	MENU_POS_ABOUT['width'] 	= [ 239, 150];
	// 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
	// Y coordinate of upper left corner of top level menu item
	MENU_POS_ABOUT['block_top']	= [ 240, 18];
	// X coordinate of upper left corner of top level menu item
	MENU_POS_ABOUT['block_left']	= [ 0, 165];
	// offsets between items of the same level
	MENU_POS_ABOUT['top']		= [ 35, 26];
	MENU_POS_ABOUT['left']	= [ 20, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_ABOUT['hide_delay']	= [ 50, 100];

//var MENU_POS_LIT = new Array();
	// item sizes
	//MENU_POS_LIT['height']	= [ 35, 26];
	//MENU_POS_LIT['width'] 	= [ 239, 205];
	// 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
	// Y coordinate of upper left corner of top level menu item
	//MENU_POS_LIT['block_top']	= [ 310, 18];
	// X coordinate of upper left corner of top level menu item
	//MENU_POS_LIT['block_left']	= [ 0, 165];
	// offsets between items of the same level
	//MENU_POS_LIT['top']		= [ 35, 26];
	//MENU_POS_LIT['left']	= [ 20, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	//MENU_POS_LIT['hide_delay']	= [ 50, 100];

var MENU_POS_SVCTR = new Array();
	// item sizes
	MENU_POS_SVCTR['height']	= [ 35, 26];
	MENU_POS_SVCTR['width'] 	= [ 239, 190];
	// 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
	// Y coordinate of upper left corner of top level menu item
	MENU_POS_SVCTR['block_top']	= [ 310, 18];
	// X coordinate of upper left corner of top level menu item
	MENU_POS_SVCTR['block_left']	= [ 0, 165];
	// offsets between items of the same level
	MENU_POS_SVCTR['top']		= [ 35, 26];
	MENU_POS_SVCTR['left']	= [ 20, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_SVCTR['hide_delay']	= [ 50, 100];

var MENU_POS_FORMS = new Array();
	// item sizes
	MENU_POS_FORMS['height']	= [ 35, 26];
	MENU_POS_FORMS['width'] 	= [ 239, 200];
	// 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
	// Y coordinate of upper left corner of top level menu item
	MENU_POS_FORMS['block_top']	= [ 345, 18];
	// X coordinate of upper left corner of top level menu item
	MENU_POS_FORMS['block_left']	= [ 0, 165];
	// offsets between items of the same level
	MENU_POS_FORMS['top']		= [ 35, 26];
	MENU_POS_FORMS['left']	= [ 20, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_FORMS['hide_delay']	= [ 50, 100];
/*	
var MENU_POS_ONLINE = new Array();
	// item sizes
	MENU_POS_ONLINE['height']	= [ 35, 26];
	MENU_POS_ONLINE['width'] 	= [ 239, 150];
	// 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
	// Y coordinate of upper left corner of top level menu item
	MENU_POS_ONLINE['block_top']	= [ 380, 18];
	// X coordinate of upper left corner of top level menu item
	MENU_POS_ONLINE['block_left']	= [ 0, 165];
	// offsets between items of the same level
	MENU_POS_ONLINE['top']		= [ 35, 26];
	MENU_POS_ONLINE['left']	= [ 20, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_ONLINE['hide_delay']	= [ 50, 100];
*/

var MENU_POS_RATING = new Array();
	// item sizes
	MENU_POS_RATING['height']	= [ 35, 26];
	MENU_POS_RATING['width'] 	= [ 239, 150];
	// 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
	// Y coordinate of upper left corner of top level menu item
	MENU_POS_RATING['block_top']	= [ 450, 18];
	// X coordinate of upper left corner of top level menu item
	MENU_POS_RATING['block_left']	= [ 0, 165];
	// offsets between items of the same level
	MENU_POS_RATING['top']		= [ 35, 26];
	MENU_POS_RATING['left']	= [ 20, 0];
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS_RATING['hide_delay']	= [ 50, 100];


var MENU_STYLES = new Array();
        // default item state when it is visible but doesn't have mouse over
        MENU_STYLES['onmouseout'] = [
                'color', ['#ffffff', '#ffffff'],
                'background', ['#ffffff', '#008000'],
        ];

        // state when item has mouse over it
        MENU_STYLES['onmouseover'] = [
                'color', ['#000000', '#008000'],
                'background', ['#ffffff', '#ffffff'],
        ];

        // state when mouse button has been pressed on the item
        MENU_STYLES['onmousedown'] = [
                'color', ['#000000', '#000000'],
                'background', ['#ffffff', '#ffffff'],
        ];
