//javascript mapb_menu_def.js

if (document.layers) {
	var newWindowWidth = window.innerWidth;
}
else if(document.all){
	var newWindowWidth = document.body.clientWidth;
}
else if(document.getElementById){
	var newWindowWidth = window.innerWidth;
}

var finalSPosition = newWindowWidth/2-380;

if (finalSPosition <= 15){
	finalSPosition = 15
}

mainMenu = new Menu ('mainMenu',finalSPosition,200);

//mainMenu.m_dec = '|';
mainMenu.m_dec = '';
mainMenu.m_vertical = true;
//mainMenu.sm_color  = 'url(img/icon_printer.gif)'; // Item color of submenus
//mainMenu.sm_a_color  = 'url(img/icon_printer.gif)'; // Item color when mouseOver
mainMenu.txt_color  = '#000000';  // Color of initial menu
mainMenu.txt_a_color  = '#FFFFFF'; // Item color of submenus

//Menu definition
mainMenu.addItem ('NLPIP Home',{'url':'', 'theHeight':30,'theWidth':150,'background':'url(img/arrowUnder.gif)','backgroundA':'url(img/arrowOver.jpg)','txtacolor':'#FFFFFF','onclick':"location='/programs/NLPIP/index.asp'; target='_blank'"},false);

	mainMenu.addItem ('Technologies',{'url':'/programs/NLPIP/technologies.asp', 'target':'blank','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('Search',{'url':'/programs/NLPIP/search.asp', 'target':'blank','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('FAQ',{'url':'/programs/NLPIP/faqs/index.asp', 'target':'blank','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('Publications',{'url':'/programs/NLPIP/publications.asp', 'target':'blank','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},true);
	
mainMenu.addItem ('-',{'url':'-','theHeight':15, 'theWidth':150},false);
mainMenu.addItem ('Introduction',{'url':'abstract.asp','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);

mainMenu.addItem ('T8 Lamps Q&A',{'url':'', 'theHeight':30,'theWidth':150,'background':'url(img/arrowUnder.gif)','backgroundA':'url(img/arrowOver.jpg)','txtacolor':'#FFFFFF','onclick':"location='index.asp'"},false);
	
	mainMenu.addItem ('What is the light output of T8 fluorescent lamps?',{'url':'02-t8-light-output.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('What are the power requirements for T8 fluorescent lamps?',{'url':'03-t8-power.asp','theHeight':45, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('How efficacious are T8 fluorescent lamps?',{'url':'04-t8-efficacy.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('What is the life of T8 fluorescent lamps?',{'url':'05-t8-lamp-life.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('How well do T8 fluorescent lamps maintain light output?',{'url':'06-t8-lumen-maintenance.asp','theHeight':45, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('What is the color of T8 fluorescent lamps?',{'url':'07-t8-color.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('How can the overall performance of T8 fluorescent lamps be compared?',{'url':'08-t8-overall-performance.asp','theHeight':45, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('How much do T8 fluorescent lamps cost?',{'url':'09-t8-cost.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('Who makes T8 fluorescent lamps?',{'url':'10-t8-manufacturers.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('Conclusion',{'url':'11-t8-conclusion.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},true);

mainMenu.addItem ('Appendices',{'url':'', 'theHeight':30,'theWidth':150,'background':'url(img/arrowUnder.gif)','backgroundA':'url(img/arrowOver.jpg)','txtacolor':'#FFFFFF','onclick':"location='index.asp'"},false);
	mainMenu.addItem ('Appendix A: Test methods',{'url':'12-t8-appendix-a.asp','theHeight':30, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
	mainMenu.addItem ('Appendix B: Color rendering of T8 fluorescent lamps',{'url':'13-t8-appendix-b.asp','theHeight':45, 'theWidth':300,'backgroundA':'#663300','txtacolor':'#FFFFFF'},true);

mainMenu.addItem ('Resources',{'url':'resources.asp','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
mainMenu.addItem ('Sponsors and Credits',{'url':'sponsorsCredits.asp', 'theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
mainMenu.addItem ('Glossary',{'url':'glossary.asp', 'target':'_blank','winOptions':'status=no, toolbar=no, resizable=yes, location=no, scrollbars=yes, width=700, height=500','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
mainMenu.addItem ('Legal Notices',{'url':'legalNotices.asp','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);
mainMenu.addItem ('Site Map',{'url':'sitemap.asp','theHeight':30, 'theWidth':150,'backgroundA':'#663300','txtacolor':'#FFFFFF'},false);

mainMenu.doMenu();


//control
if (document.layers){
	document.onMouseDown = hideMenus;
} else {
	document.body.onclick = hideMenus;
}
