var MENU_ITEMS0 = [
	[wrap_root('home'), 'index.html', {'sw':74},
    ],
	[wrap_root('about'), null, {'sw':84},
        [wrap_child('OVERVIEW'), 'about-overview.html', {'sh':15}],
		[wrap_child('PROFILES<BR>OF THE PRINCIPALS'), 'about-principals.html', {'sh':30}],
		[wrap_child('OUR CLIENTS'), 'about-clients.html', {'sh':15}]
	],
    [wrap_root('investment'), null, {'sw':97},
        [wrap_child('PHILOSOPHY'), 'investment-philosophy.html', {'sh':16}],
        [wrap_child('PORTFOLIO DEVELOPMENT'), 'investment-portfolio.html', {'sh':16}]
    ],
	[wrap_root('services'), null, {'sw':84},
		[wrap_child('WEALTH MANAGEMENT'), 'wealth-management.html', {'sh':16}]
	],
	[wrap_root('resources'), null, {'sw':96},
		[wrap_child('MARKET REPORT'), 'resources-market-report.html', {'sh':16}],
        [wrap_child('PUBLICATIONS AND DOWNLOADS'), 'resources-publications.html',  {'sh':16}]
	],
	[wrap_root('contact'), null, {'sw':90},
        [wrap_child('CONTACT US'), 'contact.html', {'sh':16}],
        [wrap_child('CLIENT LOGIN'), 'http://www.fiibg.com/av/tpkc', {'sh':15}]
	]
]

function wrap_child (text) {
	var res=[];for (var i=0; i<3; i++)
		res[i]='<table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td width=100% align=center class=a' + i + '>' + text + '</td></tr></table>'
	return res;
}

function wrap_root (text) {
	var res=[];                                     
		res[0]='<img src=\"buttons/' + text + '.jpg\">';
        res[1]='<img src=\"buttons/' + text + ' over.jpg\">';
        res[2]='<img src=\"buttons/' + text + '.jpg\">';
	return res;
}



