var MENU1_ITEMS =[
	[wrap_blue('Home'), 'index.html', {'sw':95},
	],
	[wrap_blue('Insurance Services'), 'ins_home.html', {'sw':164},
	],
	[wrap_blue('Attorney Services'), 'att_home.html', {'sw':157},
	],
	[wrap_blue('Business Services'), 'bus_home.html', {'sw':157},
	],
	[wrap_blue('Polygraph'), 'polygraph.html', {'sw':115},
	],
	[wrap_blue('Order an Investigation'), null,  {'sw':187, 'bw':220},
		['Attorney/Private Party Request', 'investigation_order.html'],
		['AOE-COE Subrosa Investigation Request', 'download/adams_form3.pdf']
	],
	[wrap_blue('Contact Us'), 'contact_us.html', {'sw':125}]
];

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/blue',
			(i?2:1),'_l.gif" width="8" height="22" border="0"></td><td background="img/blue',
			(i?2:1),'_m.gif" style="font-family: tahoma, verdana, arial; font-size: 11px; padding-bottom: 4; text-align: center; color: #281307" width="100%">',text,'</td><td><img src="img/blue',
			(i?2:1),'_r.gif" width="8" height="22" border="0"></td></tr></table>'
		].join('');
	return res;
}