/*
* Don't change or remove the head comments!
*
* DHTML hierarchical, object oriented menu: VB MENU 1.5
* Copyright (C) 2003-2004  Vladimir Bodurov
*
*   Version  1.5  2004-03-06
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.

* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* Copy of GNU Lesser General Public License at: http://www.gnu.org/copyleft/lesser.txt
*
* Source code home page: http://www.bodurov.com/menu.html
*/


// Creating and Managing object

var mc = new MenuCreator();

// Your menu starts here
mc.Start();
mc.Add("Home","http://www.doris-inc.com/index.html","");
	mc.Start();
	mc.End();
mc.Add("Contact","http://www.doris-inc.com/contact/contact.html","");
	mc.Start();
	mc.End();
mc.Add("Careers","#","");
	mc.Start();
	mc.Add("Join the Doris Team","http://www.doris-inc.com/careers/careers.html","");
	mc.Add("Employee Benefits","http://www.doris-inc.com/careers/benefits.html","");
	mc.End();
mc.Add("teamDoris","#","");
	mc.Start();
	mc.Add("Company Intranet","http://diexch/intranet","_blank");
	mc.Add("Webmail Access","https://owa.doris-inc.com/exchange","_blank");
	mc.Add("Electronic Data Mgmt. System","https://projectdox.doris-inc.com/ProjectDox/","_blank");
	mc.Add("Employee Portal","https://vpn.doris-inc.com","_blank");
	mc.Add("IS Remote Support","http://www.doris-inc.com/support","_blank");	
	mc.End();
mc.Add("Company","#","");
	mc.Start();
	mc.Add("Profile","http://www.doris-inc.com/company/profile.html","");
	mc.Add("Shareholders","http://www.doris-inc.com/company/shareholders.html","");
	mc.Add("Quality Assurance Policy","http://www.doris-inc.com/company/qa.html","");
	mc.Add("HSE Policy","http://www.doris-inc.com/test/company/hse.html","");
	mc.Add("Management Team","http://www.doris-inc.com/company/managementteam.html","");
	mc.End();
mc.Add("Services","#","");
	mc.Start();
	mc.Add("Overview","http://www.doris-inc.com/services/overview.html","");
	mc.Add("Project Management","http://www.doris-inc.com/services/projmgmt.html","");
	mc.Add("Subsea Facilities","http://www.doris-inc.com/services/subseafaceng.html","");
	mc.Add("Surface Facilities","http://www.doris-inc.com/services/surfacefaceng.html","");
	mc.Add("Shared Services","http://www.doris-inc.com/services/sharedservices.html","");
	mc.Add("Construction Support Services","http://www.doris-inc.com/services/dcss.html","");
	mc.End();
	
mc.Add("Experience","#","");
	mc.Start();
	mc.Add("Conceptual Design","http://www.doris-inc.com/experience/conceptdesign.html","");
	mc.Add("Pre-FEED","http://www.doris-inc.com/experience/prefeed.html","");
	mc.Add("FEED","http://www.doris-inc.com/experience/feed.html","");
	mc.Add("Detailed Design","http://www.doris-inc.com/experience/detaildesign.html","");
	mc.Add("Installation Support","http://www.doris-inc.com/experience/installation.html","");
	mc.Add("Owners Engineering","http://www.doris-inc.com/experience/ownereng.html","");
	mc.End();
	// Your menu ends here

// if you uncomment this the menu will be vertical instead of horizontal
//mc.Vertical();
// if you uncomment this the box will be centered
mc.Center();
// if you uncomment this you will have to write the first level youself
//mc.DoNotWriteFirstLevel();

mc.Draw();
