var MENU_POS0=[
// Level 0 block configuration
{
	// Item's width in pixels
	'width'      : 77,
	// Item's height in pixels
	'height'     : 18,
	// if Block Orientation is vertical
	'vertical'   : false,
	// Block outing table parameters: 
	// [cellpadding, cellspacing, border]
	'table'      : [0, 0, 0],
	// Time Delay in milliseconds before subling block expands  
	// after mouse pointer overs an item
	'expd_delay' : 200,
	// Style class names for the level
	'css' : {
		// Block outing table class
		'table' : 'Menu_0_Level_0_table',
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' : ['Menu_0_Level_0_inner_mouseout', 'Menu_0_Level_0_inner_mouseover', 'Menu_0_Level_0_inner_mousedown'],
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' : ['Menu_0_Level_0_outer_mouseout', 'Menu_0_Level_0_outer_mouseover', 'Menu_0_Level_0_outer_mousedown']
	}
},
// Level 1 block configuration -------------------------------------
{
	'height'	 : 30,
	'width'      : 250,
	'table'      : [0, 1, 0],
	// Vertical Offset between adjacent levels in pixels
	'block_top'  : 26,
	// Horizontal Offset between adjacent levels in pixels
	'block_left' : 10,
	'vertical'   : true,
	// block behaviour if single frame:
	// 1 - shift to the edge, 2 - flip relatively to left upper corner
	'wise_pos'   : 1,
	// Time Delay in milliseconds before menu collapses after mouse
	// pointer lefts all items
	'hide_delay' : 1000,
	// level shadow scope settings
	/*'shadow' : {
		// horisontal offset of the shadow in pixels
		'offX' : -20,
		// vertical offset of the shadow in pixels
		'offY' : -20,
		// color of the shadow
		'color' : 'none'
	},
	'transition': ['blendtrans(DURATION=0.2)', 'blendtrans(DURATION=0.2)'],
	*/
	'css' : {
		// Block outing table class
		'table' : 'Menu_0_Level_1_table',
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' : ['Menu_0_Level_1_inner_mouseout', 'Menu_0_Level_1_inner_mouseover', 'Menu_0_Level_1_inner_mousedown'],
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' : ['Menu_0_Level_1_outer_mouseout', 'Menu_0_Level_1_outer_mouseover', 'Menu_0_Level_1_outer_mousedown']
	}
},
// Level 2 block configuration -------------------------------------------
{
	'block_top'  : -1,
	'block_left' : 250
}
// Rest level configurations are inherited from level 2
];


function wrap_caption (text) {
	var res=[];
	switch (text) {
		case "Solutions":
			// mouse out
			res[0]=['<img src="/images/n1_solutions.gif" alt="Solutions" width="91" height="18" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_solutions_alt.gif" alt="Solutions" width="91" height="18" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_solutions.gif" alt="Solutions" width="91" height="18" border="0">'];
			break;
		case "Services":
			// mouse out
			res[0]=['<img src="/images/n1_services.gif" alt="Services" width="91" height="18" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_services_alt.gif" alt="Services" width="91" height="18" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_services.gif" alt="Services" width="91" height="18" border="0">'];
			break;
		case "Portfolio":
			// mouse out
			res[0]=['<img src="/images/n1_portfolio.gif" alt="Portfolio" width="102" height="18" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_portfolio_alt.gif" alt="Portfolio" width="102" height="18" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_portfolio.gif" alt="Portfolio" width="102" height="18" border="0">'];
			break;
		case "Company":
			// mouse out
			res[0]=['<img src="/images/n1_company.gif" alt="Company" width="89" height="18" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_company_alt.gif" alt="Company" width="89" height="18" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_company.gif" alt="Company" width="89" height="18" border="0">'];
			break;
		case "Partners":
			// mouse out
			res[0]=['<img src="/images/n1_partners.gif" alt="Partners" width="96" height="18" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_partners_alt.gif" alt="Partners" width="96" height="18" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_partners.gif" alt="Partners" width="96" height="18" border="0">'];
			break;
		case "Contact_Us":
			// mouse out
			res[0]=['<img src="/images/n1_contact-us.gif" alt="Contact Us" width="107" height="18" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_contact-us_alt.gif" alt="Contact Us" width="107" height="18" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_contact-us.gif" alt="Contact Us" width="107" height="18" border="0">'];
			break;
	default: res = text;
	}
			
	return res;
}
