//for non javascript brower. 
//DO NOT REMOVE THE BELOW LINE
<!--

function onLoad() {

    window.whatNewMenu= new Menu("what new");
   
    whatNewMenu.addMenuItem("we've moved !!", "location='http://www.cadcrew.com/newaddress.htm'");
    //whatNewMenu.addMenuItem("curved text", "location='http://developer.netscape.com/openstudio/'");
    whatNewMenu.addMenuItem("glyph for I-DEAS 9", "location='http://www.cadcrew.com/new.htm'");
    
    whatNewMenu.bgColor= "#ccffcc"; 
    whatNewMenu.menuBorderBgColor= "#ccffcc";
	//whatNewMenu.menuContainerBgColor = "#ccffcc";

    //open width is 100 pixel
    //menu width is 100-(2x2 border)= 96
    whatNewMenu.menuItemWidth= 140;
	
    	//********************************************************* 

      //ideas
	window.productsIdeasMenu= new Menu("ideas");
    	productsIdeasMenu.addMenuItem("overview", "location='http://www.cadcrew.com/ideas.htm'");
    	productsIdeasMenu.addMenuItem("pricing", "location='mailto:sales@caDCRew.com'");
    	productsIdeasMenu.bgColor= "#efefef";
	productsIdeasMenu.menuBorderBgColor= "#efefef";
		//productsIdeasMenu.menuContainerBgColor = "#ccffcc";

	
    	productsIdeasMenu.menuItemWidth= 95;

      //glyph
	window.productsGlyphMenu=new Menu("glyph");
	productsGlyphMenu.addMenuItem("overview", "location='http://www.cadcrew.com/glyph.htm'");
    	productsGlyphMenu.addMenuItem("free trial", "location='http://www.cadcrew.com/glyph_request.htm'");
    	productsGlyphMenu.addMenuItem("purchase", "location='http://www.cadcrew.com/glyph_buy.htm'");
	productsGlyphMenu.addMenuItem("licensing", "location='http://www.cadcrew.com/glyph_license_option.htm'");

    	productsGlyphMenu.bgColor= "#efefef";
    	productsGlyphMenu.menuBorderBgColor= "#efefef";
		//productsGlyphMenu.menuContainerBgColor = "#efefef";
    	productsGlyphMenu.menuItemWidth= 95;

	//viewport+
	window.productsViewportMenu= new Menu("viewport+");
	productsViewportMenu.addMenuItem("overview", "location='http://www.cadcrew.com/viewport.htm'");
	productsViewportMenu.addMenuItem("pricing", "location='mailto:sales@caDCRew.com'");
      productsViewportMenu.bgColor= "#efefef";   
	productsViewportMenu.menuBorderBgColor= "#efefef";
		//productsViewportMenu.menuContainerBgColor = "#efefef";
      productsViewportMenu.menuItemWidth= 95;
      

      //product software menu
      window.productsSoftwareMenu= new Menu("software");
      productsSoftwareMenu.addMenuItem(productsIdeasMenu);
	productsSoftwareMenu.addMenuItem(productsGlyphMenu);
	productsSoftwareMenu.addMenuItem(productsViewportMenu);
      productsSoftwareMenu.bgColor= "#efefef";   
	productsSoftwareMenu.menuBorderBgColor= "#efefef";
		//productsSoftwareMenu.menuContainerBgColor = "#efefef";
	productsSoftwareMenu.menuItemWidth= 95;



	//xerox
	window.productsXeroxMenu= new Menu("xerox");
	productsXeroxMenu.addMenuItem("overview", "location='http://www.cadcrew.com/tektronix.htm'"); 
	productsXeroxMenu.addMenuItem("pricing", "location='mailto:sales@caDCRew.com'");
      productsXeroxMenu.bgColor= "#efefef";   
	productsXeroxMenu.menuBorderBgColor= "#efefef";
		//productsViewportMenu.menuContainerBgColor = "#efefef";
      productsXeroxMenu.menuItemWidth= 95;


	//3D labs
	window.products3DLabsMenu= new Menu("3D labs");
	products3DLabsMenu.addMenuItem("overview", "location='http://www.cadcrew.com/3dlabs_1.htm'");
	products3DLabsMenu.addMenuItem("pricing", "location='mailto:sales@caDCRew.com'");
      products3DLabsMenu.bgColor= "#efefef";   
	products3DLabsMenu.menuBorderBgColor= "#efefef";
		//productsViewportMenu.menuContainerBgColor = "#efefef";
      products3DLabsMenu.menuItemWidth= 95;


      //product hardware menu
      window.productsHardwareMenu= new Menu("hardware");
      productsHardwareMenu.addMenuItem(productsXeroxMenu); 
	productsHardwareMenu.addMenuItem(products3DLabsMenu);

	productsHardwareMenu.bgColor= "#efefef";   
	productsHardwareMenu.menuBorderBgColor= "#efefef";
		//productsHardwareMenu.menuContainerBgColor = "#efefef";
	productsHardwareMenu.menuItemWidth= 95;


    window.productsMenu= new Menu("products");
    productsMenu.addMenuItem(productsSoftwareMenu); 
    productsMenu.addMenuItem(productsHardwareMenu);
    productsMenu.bgColor= "#efefef";   
    productsMenu.menuBorderBgColor= "#efefef";
   	//productsMenu.menuContainerBgColor = "#efefef";   	
    productsMenu.menuItemWidth= 95;


    

	//********************************************************* 

    window.servicesMenu= new Menu("services");
    servicesMenu.addMenuItem("overview", "location='http://www.cadcrew.com/services.htm'");
    
    servicesMenu.bgColor= "#FFCC99";
    servicesMenu.menuBorderBgColor= "#FFCC99";
    servicesMenu.menuItemWidth= 95;
   





	//*********************************************************

    window.supportMenu= new Menu("support");
  
    supportMenu.addMenuItem("utilities", "location='http://www.cadcrew.com/support.htm'");
    supportMenu.addMenuItem("feedback", "location='http://www.cadcrew.com/feedback.htm'");
    supportMenu.addMenuItem("partners", "location='http://www.cadcrew.com/partners.htm'");
    supportMenu.addMenuItem("legal", "location='http://www.cadcrew.com/legal.htm'");

    
    supportMenu.bgColor= "#FFFFCC";
    supportMenu.menuBorderBgColor= "#FFFFCC";
    supportMenu.menuItemWidth= 95;

	//*********************************************************

    
    window.contactMenu= new Menu("contact us");
  
    contactMenu.addMenuItem("info", "location='http://www.cadcrew.com/aboutDCR.htm'");
    contactMenu.addMenuItem("home", "location='http://www.cadcrew.com/index.htm'");
    contactMenu.addMenuItem("careers", "location='http://www.cadcrew.com/careers.htm'");
    contactMenu.addMenuItem("our location", "location='http://www.cadcrew.com/map.htm'");

        
    contactMenu.bgColor= "#CCFFFF";
    contactMenu.menuBorderBgColor= "#CCFFFF";
    contactMenu.menuItemWidth= 95;


    contactMenu.writeMenus();

}

//for non javascript brower. 
//DO NOT REMOVE THE BELOW LINE
//-->

