var MENU1_ITEMS =[
    [wrap_blue('Home'), 'Index.htm'],
	[wrap_blue('Industrial Control'), null, null,
		['System Design', 'SystemDesign.html'],
		['Panel Build', 'PanelBuild.html'],
		['Inverters', 'Inverter.html'],
		['DC Drive', 'DCdrive.html'],
		['Soft Starters', 'SoftStart.html'],
		['Electronic Repair', 'Repair.html']
	],
	[wrap_blue('Energy Systems'), null, null,
		['Solar Power', 'SolarPower.html'],
		['Wind Energy', 'WindPower.html']
	],
	[wrap_blue('Maintenance'), 'FactoryMaintenance.html'],
	[wrap_blue('NDT / NDE'), 'NDT.html'],
	[wrap_blue('Offshore Engineering'), 'OffshoreEngineering.html'],
	[wrap_blue('Contact'), 'Contact.html']
];

function wrap_blue (text) {
	var res=[];
	for (var i=0; i<3; i++)
		res[i]=['<table cellpadding="0" cellspacing="0" border="0"><tr><td><img src="img/lev0_bg',
			(i?2:1),'.gif" width="8" height="23" border="0"></td><td background="img/lev0_bg',
			(i?2:1),'.gif" style="font-face: sans-serif, tahoma, verdana, arial; font-size: 11px; color: #FFFFFF" width="100%">',text,'</td><td><img src="img/lev0_bg',
			(i?2:1),'.gif" width="8" height="23" border="0"></td></tr></table>'
		].join('');
	return res;
}