// This is where you edit the Navigation menu

var menuMgr = new NlsMenuManager("mgr");

// SUB MENUS

// About menu about folder
  var menuAbout=menuMgr.createMenu("about");
  	//menuAbout.addItem("01", "History", "about/history.php");
    menuAbout.addItem("01", "Management", "about/management.php");
	menuAbout.addItem("02", "Board of Directors", "about/directors.php");
    menuAbout.addItem("03", "Investors", "about/investors.php");  
	menuAbout.addItem("04", "Advisory Boards", "about/boards.php");  
	menuAbout.addItem("05", "Collaborations", "about/collaborations.php"); 
	menuAbout.addItem("06", "Regulatory", "about/regulatory.php"); 


  //Biopharma - platforms folder and glp folder
 var menuBiopharma=menuMgr.createMenu("biopharma");
  //menuBiopharma.addItem("01", "RNA/DNA Services", "platforms/index.php");
 //menuBiopharma.addItem("02", "Safety & Toxicology", "../glp/index.php", "", true, null, "glp");
  
//var menuBiopharma=menuMgr.createMenu("plat");
 menuBiopharma.addItem("01", "Microarray", "platforms/microarrays.php");
 menuBiopharma.addItem("02", "Multiplexed Gene Expression", "platforms/xppcr.php");
 menuBiopharma.addItem("03", "Genotyping", "platforms/scorpions.php");
 //menuBiopharma.addItem("04", "Real Time PCR", "platforms/pcr.php");
 menuBiopharma.addItem("04", "Custom Data Analysis", "platforms/data.php");
 menuBiopharma.addItem("05", "FFPE Tools", "platforms/FFPE.php");
  
    // GLP Safety & Toxicology menu - glp folder
//var menuGLP=menuMgr.createMenu("glp");
menuBiopharma.addItem("06", "Biodistribution Studies", "platforms/distribution.php");
menuBiopharma.addItem("07", "DNA Integration Studies", "platforms/integration.php");
 menuBiopharma.addItem("08", "PKDM", "platforms/pkdm.php");
 menuBiopharma.addItem("09", "Predictive Toxicology", "platforms/toxicology.php", "", true, null, "tox");
menuBiopharma.addItem("10", "Lot Release Testing", "platforms/lot.php");
//menuBiopharma.addItem("11", "Sample Banking", "platforms/banking.php");
  
 var menuTox=menuMgr.createMenu("tox");
menuTox.addItem("01", "ToxFx Plex", "platforms/toxfx.php");
menuTox.addItem("02", "Nephrotox Plex", "platforms/nephrotox.php");
 menuTox.addItem("03", "Multitox Plex", "platforms/multitox.php"); 


    // 	Biomarker Development menu - bio folder
  var menuBio=menuMgr.createMenu("bio");
  menuBio.addItem("01", "Patient Stratification", "bio/patient.php");
  menuBio.addItem("02", "Disease Staging", "bio/staging.php");menuBio.addItem("03", "Predictive Drug Response", "bio/drug.php");
    menuBio.addItem("04", "Efficacy Monitoring", "bio/monitoring.php");
   menuBio.addItem("05", "Companion Diagnostics", "bio/diagnosics.php");


 // CLIA menu - clia folder
  var menuCLIA=menuMgr.createMenu("clia");
  menuCLIA.addItem("01", "Prostate  Tumor Presence Assay", "clia/diagnostics.php");
  menuCLIA.addItem("02", "Prostate Cancer Prognostic Assay", "clia/prognostics.php");
  menuCLIA.addItem("03", "Childhood Cancer Assay", "clia/childhood.php");
  menuCLIA.addItem("04", "FFPE Tools", "clia/ffpe.php");
  //menuCLIA.addItem("05", "Sample Banking", "../glp/banking.php");

// News menu - folder newsroom
  var menuDxD=menuMgr.createMenu("news");
//  menuDxD.addItem("01", "Success Stories", "newsroom-success_stories.php");
  menuDxD.addItem("01", "Events", "newsroom/events.php");
  menuDxD.addItem("02", "Press Releases", "newsroom/press.php");
  menuDxD.addItem("03", "Publications", "newsroom/publications.php");
  menuDxD.addItem("04", "Technical Bulletins", "newsroom/brochures.php");
  


// Main Menu

  var menuBar = menuMgr.createMenubar("menubar");
	menuBar.orient = "V";
	menuBar.absWidth=230;
	menuBar.showSubIcon = true;
	menuBar.subMenuIc=["http://www.altheadx.com/menu/images/SubMenuArrow1.gif","http://www.altheadx.com/menu/images/SubMenuArrow2.gif"];
    menuBar.stlprf="main_";

  menuBar.addItem("01", "About AltheaDx", "about/index.php", "", true, null, "about");
  menuBar.addItem("02", "Biopharma Services", "platforms/index.php", "", true, null, "biopharma");
    menuBar.addItem("03", "Diagnostic Translation", "bio/index.php", "", true, null, "bio");
	menuBar.addItem("04", "Clinical Services", "clia/index.php", "", true, null, "clia");
  menuBar.addItem("05", "Newsroom", "newsroom/index.php", "", true, null, "news");
  //menuBar.addItem("06", "Partners", "resources/index.php", "");
  menuBar.addItem("06", "Contact Us", "contact.php", "");
menuBar.addItem("07", "Careers", "careers.php", "");

  