var MENU_ITEMS = [
	[wrap_gold('Home'), 'index.htm', {oh:cursor_clear}],
	[wrap_gold('About Us'), null, null,
		['Company', 'company.htm'],
		['News & Events', 'news.htm'],
		['Why Choose Us?', 'why_CFS.htm'],
		['Management Team', 'management.htm'],
		['Careers', 'careers.htm']
	],
	[wrap_gold('Services'), null, null,
		['Electronic Discovery', 'electronic_discovery.htm'],
		['Computer Forensics','computer_forensics.htm'], 
		['&nbsp;&nbsp;- Forensic Imaging','imaging.htm'],
		['&nbsp;&nbsp;- Data Analysis & Recovery','data_recovery.htm'],
		['Information Security', 'info_security.htm'],
		['Litigation Support', 'litigation.htm'],
		['CLE Training', 'CLE_classes.htm'],
		['&nbsp;&nbsp;- Recent Presentations','recent_CLE_training.htm'],
		['Law Enforcement Support', 'law_training.htm'],
	],
	[wrap_gold('References'), 'references.htm'],	
	[wrap_gold('Contact Us'), 'contact_us.htm', null,
			   ['Shipping Computers', 'shipping.htm']
	]
];

function wrap_gold (text) {
	var res=[];
	for (var i=0; i<3; i++)
		res[i]=['<table border="0" cellspacing="0" cellpadding="0" align="center"><tr align="center"><td><img src="img/gold',
			(i?2:1),'_m.gif" width="1" height="23" border="0"></td><td background="img/gold',
			(i?2:1),'_m.gif" style="font-face: tahoma, verdana, arial; font-size: 11px; font-weight: normal; color: #000000" width="100%">',text,'</td><td><img src="img/gold',
			(i?2:1),'_m.gif" width="1" height="23" border="0"></td></tr></table>'
		].join('');
	return res;
}
function cursor_clear() {
var cursor =
document.layers ? document.cursor :
document.all ? document.all.cursor :
document.getElementById ? document.getElementById('cursor') : null;
cursor = 'crosshair';
}


