/*
* 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();

mc.Start();
mc.Add("Welcome","http://www.agfs.com/default.asp","_self");
mc.Add("Experience","http://www.agfs.com/experience.asp","_self");
	mc.Start();
	mc.Add("Highlights","http://www.agfs.com/experience-highlights.asp","_self");
	mc.Add("Financing Experience","http://www.agfs.com/experience-financing.asp","_blank","_self");
	mc.Add("Consulting With Lawyers","http://www.agfs.com/experience-consulting.asp","_self");
	mc.Add("Robert W. Doty","http://www.agfs.com/robert-w-doty.asp","_blank","_self");
	mc.End();
mc.Add("Services","services.asp");
	mc.Start();
	mc.Add("Financial Advisory Services","http://www.agfs.com/services-financial-advisory.asp","_self");
	mc.Add("Financial Planning and Management","http://www.agfs.com/services-financial-advisory.asp#1","_self");
	mc.Add("Capital Financing Advisory Services","http://www.agfs.com/services-financial-advisory.asp#2","_self");
	mc.Add("Pricing Advisory Services","http://www.agfs.com/services-financial-advisory.asp#3","_self");
	mc.Add("Consulting With Lawyers","http://www.agfs.com/experience-consulting.asp","_self");
	mc.Add("Training for Legal and Financial Firms","http://www.agfs.com/services-legal-financial-training-courses.asp","_self");
	mc.End();
mc.Add("Resources","http://www.agfs.com/resources.asp","_self");
mc.Add("Contact Us","http://www.agfs.com/contact.asp","_self");
mc.End();

// 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();