var MENU_POS0=[
// Level 0 block configuration
{
	// Item's width in pixels
	'width'      : 145,
	// Item's height in pixels
	'height'     : 28,
	// 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' : 100,
	// 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'	 : 18,
	'width'      : 155,
	'table'      : [0, 1, 0],
	// Vertical Offset between adjacent levels in pixels
	'block_top'  : 28,
	// Horizontal Offset between adjacent levels in pixels
	'block_left' : 5,
	'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' : 100,
	// level shadow scope settings
	'shadow' : {
		// horisontal offset of the shadow in pixels
		'offX' : 5,
		// vertical offset of the shadow in pixels
		'offY' : 5,
		// color of the shadow
		'color' : 'silver'
	},
	//'opacity' : 100,
	'transition': ['revealTrans(TRANSITION=5,DURATION=0.3)', 'revealTrans(TRANSITION=4,DURATION=0.3)'],
	'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 -------------------------------------------
{
	'height'	 : 18,
	'width'      : 110,
	'block_top'  : -1,
	'block_left' : 155
}
// Rest level configurations are inherited from level 2
];


function wrap_caption (text) {
	var res=[];
	switch (text) {
		case "About Us":
			// mouse out
			res[0]=['<img src="/images/n1_about_us.gif" alt="About Us" width="67" height="28" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_about_us_alt.gif" alt="About Us" width="67" height="28" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_about_us.gif" alt="About Us" width="67" height="28" border="0">'];
			break;
		case "Products":
			// mouse out
			res[0]=['<img src="/images/n1_products.gif" alt="Products" width="62" height="28" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_products_alt.gif" alt="Products" width="62" height="28" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_products.gif" alt="Products" width="62" height="28" border="0">'];
			break;
		case "Installation":
			// mouse out
			res[0]=['<img src="/images/n1_installation.gif" alt="Installation" width="74" height="28" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_installation_alt.gif" alt="Installation" width="74" height="28" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_installation.gif" alt="Installation" width="74" height="28" border="0">'];
			break;
		case "How To Order":
			// mouse out
			res[0]=['<img src="/images/n1_how_to_order.gif" alt="How To Order" width="90" height="28" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_how_to_order_alt.gif" alt="How To Order" width="90" height="28" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_how_to_order.gif" alt="How To Order" width="90" height="28" border="0">'];
			break;
		case "Dealer Locator":
			// mouse out
			res[0]=['<img src="/images/n1_dealer_locator.gif" alt="Dealer Locator" width="95" height="28" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_dealer_locator_alt.gif" alt="Dealer Locator" width="95" height="28" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_dealer_locator.gif" alt="Dealer Locator" width="95" height="28" border="0">'];
			break;
		case "FAQ":
			// mouse out
			res[0]=['<img src="/images/n1_faq.gif" alt="FAQ" width="40" height="28" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_faq_alt.gif" alt="FAQ" width="40" height="28" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_faq.gif" alt="FAQ" width="40" height="28" border="0">'];
			break;
		case "Newsroom":
			// mouse out
			res[0]=['<img src="/images/n1_newsroom.gif" alt="Newsroom" width="72" height="28" border="0">'];
			// mouse over
			res[1]=['<img src="/images/n1_newsroom_alt.gif" alt="Newsroom" width="72" height="28" border="0">'];
			// mouse down
			res[2]=['<img src="/images/n1_newsroom.gif" alt="Newsroom" width="72" height="28" border="0">'];
			break;
	default: res = text;
	}
			
	return res;
}