/* menu items */
var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
[wrap_root('About Us', ''), 'companyinfo.asp', null,
	[wrap_child('Company Info'), 'companyinfo.asp'],
	[wrap_child('Terms & Conditions'), 'PDF/cs_terms_and_conditions.pdf'],
],				
	
[wrap_root('Solutions', 1), null, null,
		[wrap_child('Filtering & Compliance'), 'case_study.htm'],
		[wrap_child('Network Security'), 'case_study3.htm'],
		[wrap_child('Secure Wireless Campus'), 'case_study4.htm']
],
[wrap_root('Partners', 1), null, null,
		[wrap_child('Technology Partners'), 'partners.htm'],
		[wrap_child('Technology Test Drive'), 'tech_testdrive.htm']
],
[wrap_root('Services', 1), null, null,
		[wrap_child('Network Integration'), 'network_int.asp'],
		[wrap_child('Network Security'), 'network_sec.asp'],
		[wrap_child('Security Assessments', 1), 'assessment.asp'],
		[wrap_child('Web Development'),'webapp.htm'],
		[wrap_child('Telephone Systems'), 'telephone.asp'],
		[wrap_child('Structured Wiring Solutions'), 'cabling.asp']
],
[wrap_root('Careers', 1),'careers.asp',null],
[wrap_root('Events', 1),'events.asp',null],

[wrap_root('Help', 1), null, null,
		[wrap_child('Contact Us'), 'contactus.asp'],
		[wrap_child('Credit Application'), 'credit_app.asp'],
		//[wrap_child('Events'), 'events.asp'],
		[wrap_child('Driving Directions'), 'directions.asp'],
		[wrap_child('Request Remote Support'), 'http://sos.commsolutions.com']
		
]
,
[wrap_root('', ''),null,null]
]
function wrap_child (text) {
	return '&nbsp;' + text + '&nbsp;';
}

function wrap_root (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=4 border=0 width=100%><tr>' + (c ? '<td><font color=#000000><b>|</b></font></td>' : '') + '<td valign=middle align=right class=m0' + states[i] + 'i width=100% height=25>&nbsp;' + text + '&nbsp;</td></tr></table>'
	return res;
}
