var MENU1_ITEMS =[
	[wrap_blue('Home'), 'index.php', {'sw':80, 'bw':80}
	],
	
	[wrap_blue('Overview'), null, {'sw':80, 'bw':130},
		['Background', 'background.php'],
		['Management Team', 'management.php'],
		['Scientific Board', 'scienceteam.php'],
		['Board of Directors', 'bod.php'],
		['Code of Ethics', 'codeofethics.php'],
		],
	
	[wrap_blue('Technology'), null, {'sw':80, 'bw':220},
		['Support Vector Machine (SVM)', 'svm.php'],
		['Recursive Feature Elimination (RFE)', 'rfe.php'],
		['Fractal Genomics Modeling (FGM)', 'fgm.php'],
		['Independant Validations', 'validations.php'],
	],
	
	[wrap_blue('Products'), null, {'sw':80, 'bw':110},
		['Blood Tissue', null, null,
			['Prostate Cancer', 'prostatecancer.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}],
			['BPH', 'bph.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}],
			['Colon Cancer', 'coloncancer.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}],
			['Leukemia', 'leukemia.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}],
			['AIDS', 'aids.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}]
			],
		['Image Analysis', null, null,
			['MammoSIGHT', 'mammosight.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}],
			['MetastaSIGHT', 'metastasight.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}],
			['Flow Cytometry', 'flowcytometry.php', {'tt':'multiple instances (vertical and horizontal menu bars, styles, rollovers)'}]
			],	
			],
			
		[wrap_blue('Investor Relations'), 'ir.php', {'sw':110, 'bw':130},
		['Stock Quote', 'ir.php'],
		['SEC Filings', 'http://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0001141788&owner=include'],
		['Press Releases', 'pr.php'],
		],	
	
		[wrap_blue('Contact'), 'contact.php', {'sw':80, 'bw':60}
		],
		
		[wrap_blue('Message Board'), 'http://66.29.78.68/~health/forum/', {'sw':100, 'bw':60}
		],
		];
	

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="23" border="0"></td><td background="img/blue',
			(i?2:1),'_m.gif" style="font-face: tahoma, verdana, arial; font-size: 11px; font-weight: bold; color: #105D94" width="100%">',text,'</td><td><img src="img/blue',
			(i?2:1),'_r.gif" width="8" height="23" border="0"></td></tr></table>'
		].join('');
	return res;
}