// 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", "Getting Started", "tech_GettingStarted.html");
  menuSupp.addItem("3", "2D DIGE vs. 2D Gel", "tech_2DDIGE_vs_2DGel.html");
  menuSupp.addItem("4", "Sample Preparation", "tech_SamplePreparation.html");
  menuSupp.addItem("5", "Accuracy", "tech_accuracy.html");
  menuSupp.addItem("6", "Reproducibility", "tech_reproducibility.html");
  menuSupp.addItem("7", "Presentation", "tech_presentation.html");
  menuSupp.addItem("8", "Sample Report", "tech_SampleReport.html");
  menuSupp.addItem("9", "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 Instruction", "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", "PUBLICATIONS", "tech_publications.html");
  menuBar.addItem("7", "COMPANY", "Company_About us.html");
  menuBar.addItem("8", "ORDER_SERVICES", "Order_Forms.html");
  menuBar.addSubmenu("8", "order_services", false, null, null, [0,0]);
  
  
 
  

 
