/**
 *    GD-Menu - object oriented customizable multi-level menu system
 *    ==============================================================
 *
 *    Copyright (C) 2003 - 2005 by Ruediger Reinhardt <rreinhardt@gelsendata.de>
 *
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
 *    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 *    The GPL can be found - if provided - in the file copyleft.txt.
 *
 */

	var top_block = ( IE ) ? 121 : 121;
	
	var expandDelay = 400;
	var collapseDelay = 800;	// temp. deprecated

/* array MenuPositions - menu item specs for each level */
var MenuPositions = [
{
	/* item sizes */	'height': 26,
						'width': 100,

	/*
		menu block offset from the origin:
		root level => origin is upper left corner of the page
		other levels => origin is upper left corner of parent item
	*/
					'topBlock': top_block,
					'leftBlock': 22,

	/*
		offsets between items of the same level
	*/
					'top': 26,
					'left': 0,

	/*
		css styles to use for the items
	*/
					'css' :
					{
						'outer': ['menLev0outer_out', 'menLev0outer_over'],
						'inner': ['menLev0inner_out', 'menLev0inner_over']
					}
},

/* 2nd level */
{
	'height': 26,
	'width': 140,
	'topBlock': 0,
	'leftBlock': 100,
	'top': 26,
	'left': 0,
	'css':
	{
		'outer' : ['menLev1outer_out', 'menLev1outer_over'],
		'inner' : ['menLev1inner_out', 'menLev1inner_over']
	}
},

/* 3rd level */
{
	'height': 26,
	'width': 100,
	'topBlock': 0,
	'leftBlock': 140,
	'top': 26,
	'css':
	{
		'outer': ['menLev2outer_out', 'menLev2outer_over'],
		'inner': ['menLev2inner_out', 'menLev2inner_over']
	}
}
]

