/*
* 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("Video Production Services","/production.html","");
	mc.Start();
	mc.Add("Pre-Production","/production.html#pre","");
	mc.Add("Production","/production.html#pro","");
	mc.Add("Post Production","/production.html#post","");
	mc.Add("Video Production Services","/production.html#serv","");
	mc.End();
mc.Add("Audio Production Services","/production.html#audio","");
	mc.Start();
	mc.End();
mc.Add("Duplication Replication Services","/index-dcw.html","");
	mc.Start();
	mc.Add("DVD","/dub.html#dvd","");
	mc.Add("VHS","/dub.html#vhs","");
	mc.Add("CD-R","/dub.html#cd","");
	mc.Add("Buy Media","/media.html","");
		mc.Start();
		mc.Add("Betacam SP","/media.html#1","");
		mc.Add("Mini DV","/media.html#2","");
		mc.Add("Full Size DV","/media.html#3","");
		mc.Add("DVCAM","/media.html#4","");
		mc.Add("VHS","/media.html#5","");
		mc.Add("Audio Cassette","/media.html#6","");
		mc.End();
	mc.End();
mc.Add("Audio Video Rental Services","/index-avz.html","");
	mc.Start();
	mc.End();
mc.Add("Contact Arizona Production Center","/contact.html","");
	mc.Start();
	mc.Add("Ask Us A Question","contact.html","");
	mc.Add("Job Seekers","/jobs.html#2","");
	mc.Add("Freelancers","/jobs.html#1","");
	mc.End();
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();
