<!-- Paste this code into an external JavaScript file named: theMenu.js  -->

/*
* 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

// Creating and Managing object
var mc = new MenuCreator();

mc.Start();
mc.Add("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<u>HOME</u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","index.html","_self");
mc.Add("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ABOUT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","about/index.html","_self");
	mc.Start();
		mc.Add("InterNation, Inc.","about/translation_agency.html","_self");
		mc.Add("FAQ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","about/internation_faq.html","_self");
	mc.End();
mc.Add("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SERVICES&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;","services/index.html","_self");
	mc.Start();
	mc.Add("Translation","services/foreign_language_translations.html","_self");
	mc.Add("Voice-Over","services/voiceover_dubbing.html","_self");
	mc.Add("Subtitles","services/subtitles_captions.html","_self");
	mc.Add("Typesetting","services/typesetting_dtp.html","_self");
	mc.Add("Interpreting","services/consecutive_simultaneous.html","_self");
	mc.Add("Transcription","services/language_transcriptions.html","_self");
	mc.Add("Localization","services/web_localization.html","_self");
	mc.Add("Consulting/Other","services/cultural_consulting.html","_self");
	mc.End();
mc.Add("&nbsp;&nbsp;&nbsp;&nbsp;OUR CLIENTS&nbsp;&nbsp;&nbsp;&nbsp;","clients/index.html","_self");
	mc.Start();
			mc.Add("Portfolio/Samples","clients/samples.html","_self");
			mc.Add("Testimonials","clients/client_testimonials.html","_self");
	mc.End();
mc.Add("&nbsp;&nbsp;&nbsp;&nbsp;LANGUAGE PROFESSIONALS&nbsp;&nbsp;&nbsp;&nbsp;","professionals/index.html","_self");
	mc.Start();
		mc.Add("Translators &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>Join our network","professionals/translators.html","_self");
		mc.Add("Voice Talent &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>Enroll online","professionals/voicetalent.html","_self");		
	mc.End();
mc.Add("&nbsp;&nbsp;&nbsp;&nbsp;CONTACT&nbsp;&nbsp;&nbsp;&nbsp;","contact/index.html","_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();







