// determine browser
var br
if(navigator.appName == 'Netscape' && document.layers != null){br="N";}
else if(navigator.appName == 'Microsoft Internet Explorer' && document.all != null){br="IE";}
else{br=null}
br="IE";
// menu array
menuData = new Array()
for (i=0; i < 5; i++) {
	menuData[i] = new Array(40)
	for (j=0; j < 20; j++) {
		menuData[i][j] = new Array(2)
	}
}
// Navigation menus
// Applied QED Solutions
menuData[0][0][0]="&nbsp;Home";
menuData[0][0][1]="/home.asp";
menuData[0][1][0]="&nbsp;About";
menuData[0][1][1]="/company/about.asp";
menuData[0][2][0]="&nbsp;Privacy";
menuData[0][2][1]="/company/privacy.asp";
menuData[0][3][0]="&nbsp;Legal";
menuData[0][3][1]="/company/legal.asp";
// Products
menuData[1][0][0]="&nbsp;QED Analysis";
menuData[1][0][1]="http://www.qedanalysis.com/";
menuData[1][1][0]="&nbsp;Consulting";
menuData[1][1][1]="/consult/index.asp";
menuData[1][2][0]="&nbsp;eTools (login required)";
menuData[1][2][1]="/etools/index.asp";
menuData[1][3][0]="&nbsp;Training";
menuData[1][3][1]="/training/index.asp";
// Support
menuData[2][0][0]="&nbsp;Academic Advantage";
menuData[2][0][1]="/academ/index.asp";
menuData[2][1][0]="&nbsp;FAQ";
menuData[2][1][1]="/support/faq.asp";
menuData[2][2][0]="&nbsp;Glossary of Terms";
menuData[2][2][1]="/support/got.asp";
menuData[2][3][0]="&nbsp;Rules of Thumb";
menuData[2][3][1]="/support/rot.asp";
//menuData[2][4][0]="&nbsp;Search";
//menuData[2][4][1]="/search/query.asp";
menuData[2][5][0]="&nbsp;User Care Center";
menuData[2][5][1]="/etools/users/center.asp";
menuData[2][6][0]="&nbsp;Free Software";
menuData[2][6][1]="/support/freesw.asp";
// Press Center
//menuData[3][0][0]="&nbsp;Press Releases";
//menuData[3][0][1]="/press/releases/index.asp";
//menuData[3][2][0]="&nbsp;In the News";
//menuData[3][2][1]="/press/inthenews/index.asp";
//menuData[3][3][0]="&nbsp;Partner Announcements";
//menuData[3][3][1]="/press/partners/index.asp";
// Contact Us
menuData[4][0][0]="&nbsp;QED Contacts";
menuData[4][0][1]="/contact_info.asp";
menuData[4][1][0]="&nbsp;Feedback";
menuData[4][1][1]="/feedback.asp";
// either do Layers or Divs
if(br=="N"){
	doLayer('aqeds',0,14,'left',80)
	doLayer('products',1,152,'left',80)
	doLayer('support',2,291,'left',80)
	doLayer('press',3,430,'left',80)
	doLayer('contact',4,569,'right',80)
}
else if(br=="IE"){
	doDiv('aqeds',0,14,'left',87)
	doDiv('products',1,152,'left',87)
	doDiv('support',2,290,'left',87)
	doDiv('press',3,429,'left',87)
	doDiv('contact',4,568,'left',87)
}
else{}
//-->
