/*
* 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

ICONPATH = '../images/';
DIRECTION = 'rtl';
SHIFT = 50;
SPACE = 20;

var mc = new MenuCreator();

// Your menu starts here
mc.Start();
mc.Add("ראשי","index.html","_self");
mc.Add("אודות","about-background.html","_self");
	mc.Start();
		mc.Add("רקע","about-background.html","_self");
			mc.Start();
				mc.Add("שנות ה-80","about-background-80.html","_self");
				mc.Add("הקמת האיגוד","about-background-union.html","_self");
				mc.Add("השפעה על הנוער","about-background-teenage.html","_self");
			mc.End();
		mc.Add("היסטוריה","about-history.html","_self");
		mc.Add("חוקה","about-constitusion.html","_self");
		mc.Add("פילוסופיה","about-philosophy.html","_self");
		mc.Add("מבנה ה-ITF","about-itf.html","_self");
		mc.Add("מבנה ה-TFI","about-tfi.html","_self");
	mc.End();
mc.Add("טאיקוון-דו","tkd-history.html","_self");
	mc.Start();
		mc.Add("מדוע ללמוד","tkd-whylearn.html","_self");		
		mc.Add("תיאוריית הכח","tkd-power.html","_self");
		mc.Add("סודות האימון","tkd-secrets.html","_self");
		mc.Add("מילון מונחים");
			mc.Start();
				mc.Add("כללי","tkd-dictionary-general.html","_self");
				mc.Add("מספרים וספירה","tkd-dictionary-numbers.html","_self");
			mc.End();
		mc.Add("חגורות","tkd-belts.html","_self");
		mc.Add("עמידות","tkd-stances.html","_self");
		mc.Add("חסימות","tkd-blocks.html","_self");
		mc.Add("טולים");
			mc.Start();
				mc.Add("Chon-ji tul","tkd-chonji.html","_self");
				mc.Add("Dan-gun tul","tkd-dangun.html","_self");
				mc.Add("Do-San tul","tkd-dosan.html","_self");
				mc.Add("Won-Hyo tul","tkd-wonhyo.html","_self");
				mc.Add("Yul-Guk tul","tkd-yulguk.html","_self");
				mc.Add("Choong-Gon tul","tkd-choonggun.html","_self");
				mc.Add("Toi-Gye tul","tkd-toigye.html","_self");
				mc.Add("Hwa-Rang tul","tkd-hwarang.html","_self");
			mc.End();
		mc.Add("טולים לדאן");
			mc.Start();
				mc.Add("Choong-Moo tul","tkd-choongmoo.html","_self");
				mc.Add("Kwang-Gae tul","tkd-kwanggae.html","_self");
				mc.Add("Po-Eun tul","tkd-poeun.html","_self");
				mc.Add("Gae-Baek tul","tkd-gaebaek.html","_self");
				mc.Add("Eui-Am tul","tkd-euiam.html","_self");
/*				mc.Add("Choong-Jang tul","tkd-choongjang.html","_self");
				mc.Add("Juche tul","tkd-juche.html","_self");
				mc.Add("Sam-Il tul","tkd-samil.html","_self");
				mc.Add("Yoo-Sin tul","tkd-yoosin.html","_self");
				mc.Add("Choi-Yong tul","tkd-choiyong.html","_self");*/
			mc.End();
	mc.End();
mc.Add("גלריה");
	mc.Start();
		mc.Add("ג'נרל צ'וי בישראל","gallery-general.html","_self");
		mc.Add("אנגליה","gallery-uk.html","_self");
			mc.Start();
				mc.Add("כללי","gallery-uk.html","_self");
				mc.Add("תחרויות","gallery-uk-comp-1.html","_self");
			mc.End();
		mc.Add("ישראל","gallery-il.html","_self");
			mc.Start();
				mc.Add("כללי","gallery-il.html","_self");
				mc.Add("אימונים","gallery-il-training-1.html","_self");
			mc.End();
	mc.End();
mc.Add("מועדונים","clubs.html","_self");
mc.Add("קישורים","links.html","_self");
mc.Add("צור קשר","mailto:tfi@itf.co.il","_self");
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();