// JavaScript Document
var menuMgr = new NlsMenuManager("mgr");
  menuMgr.defaultEffect = "gradienwipe";
 
    var menuSupp=menuMgr.createMenu("services_fees");
  menuSupp.applyBorder(false, false, true, false);
  menuSupp.dropShadow("bottomright", "10px");
  menuSupp.addItem("1", "Services", "proteomics_2d_dige.html");
  menuSupp.addItem("2", "Price", "proteomics_service_fees.html");
  


  
  
  var menuSupp=menuMgr.createMenu("tech_support");
  menuSupp.applyBorder(false, false, true, false);
  menuSupp.dropShadow("bottomright", "10px");
  menuSupp.addItem("1", "FAQS", "tech_faqs.html");
  menuSupp.addItem("2", "2D DIGE vs. 2D Gel", "tech_2DDIGE_vs_2DGel.html");
  menuSupp.addItem("3", "Sample Preparation", "tech_SamplePreparation.html");
  menuSupp.addItem("4", "Accuracy", "tech_accuracy.html");
  menuSupp.addItem("5", "Reproducibility", "tech_reproducibility.html");
  menuSupp.addItem("6", "Presentation", "tech_presentation.html");
  menuSupp.addItem("7", "Sample Report", "tech_SampleReport.html");
  menuSupp.addItem("8", "Publications", "tech_publications.html");

  
  
    var menuComp=menuMgr.createMenu("company");
  menuComp.applyBorder(false, false, true, false);
  menuComp.dropShadow("bottomright", "10px");
  menuComp.addItem("1", "About Us", "Company_About us.html");
  menuComp.addItem("2", "Employment", "Company_Employment.html");
  menuComp.addItem("3", "News & Events", "Company_News.html");
  menuComp.addItem("4", "Contact us", "Company_Contact us.html");
 
 
  var menuOrde=menuMgr.createMenu("order_services");
  menuOrde.applyBorder(false, false, true, false);
  menuOrde.dropShadow("bottomright", "10px");
  menuOrde.addItem("1", "Order Forms", "Order_Forms.html");
  menuOrde.addItem("2", "Shipping Info", "shipping.html");
  menuOrde.addItem("3", "Special Offers", "proteomicspromotion.html");
  
 

  var menuBar = menuMgr.createMenubar("menubar");
  menuBar.dropShadow("none", "0px");
  menuBar.absWidth = "1200";
  menuBar.orient = "H";
 /* menuBar.showIcon = true; */
  menuBar.stlprf="horz_";
  menuBar.addItem("1", "Home", "index.html");
  menuBar.addItem("2", "Proteomics Services", "proteomics_2d_dige.html");
  menuBar.addItem("3", "Price", "proteomics_service_fees.html");
  menuBar.addItem("4", "Tech_Support", "tech_faqs.html");
  menuBar.addItem("5", "Application Gallery", "applications.html");
  menuBar.addItem("6", "Company", "Company_About us.html");
  menuBar.addItem("7", "Order_Services", "proteomics_ordering.html");
  menuBar.addSubmenu("6", "company", false, null, null, [0,0]);
  menuBar.addSubmenu("4", "tech_support", false, null, null, [0,0]);
  menuBar.addSubmenu("7", "order_services", false, null, null, [0,0]);
  
  
 
  

 