/*****************************************************************
17 August 2001
Contents of web site to be loaded via include.js
Copyright 2001 Computer Science Software (Pty) Ltd.
*****************************************************************/
// Für jeden Eintrag wird ein Objekt mit den folgenden Daten erzeugt,
// und zum globalen Objekt MenuEntries hinzugefügt:
// Beispiel: add_entry("10001")
// MenuEntries.10001.name='Welcome';
// MenuEntries.10001.folder='members';
// MenuEntries.10001.file='members.htm';

// Default Menu: Sequence of the Menu Entries in the Navigation Bar
var default_menu = new Array('10001','10002','10003','10005','10006','10004','10009');

//ID, NAME, FOLDER, FILE, STATUSBAR
add_entry("10001", "Welcome", "", "index.html");
add_entry("10002", "Tai Chi Chuan", "taichi", "index.html", "Everything about Tai Chi Chuan."); //HAS SUBMENU
add_entry("10003", "Chi Kung", "chikung", "index.html", "Everything about Chi Kung."); //HAS SUBMENU
add_entry("10005", "Prana Therapy", "healing","index.html", "Prana Therapy - The way to better health.");
add_entry("10006", "Karate-Jutsu", "karate", "index.html", "."); //HAS SUBMENU
//add_entry("10007", "Events", "", "dates.htm", "Find out about our incoming events.");
add_entry("10004", "Schools", "taichi","yon-wu.htm", "Information about the school, venues and training dates.");
//add_entry("10008", "Free Newsletter", "","subscribe.htm", "Subscribe to our FREE newsletter.");
add_entry("10009", "Contact Details", "", "contact.htm", "Find here all our contact details."); //HAS SUBMENU


//ID, NAME, MOTHER, FOLDER, FILE, STATUS BAR
add_subentry("20001", "Overview", "10002", "taichi", "index.html", ".");
add_subentry("20002", "What it is", "10002", "taichi", "taichi.htm", ".");
add_subentry("20004", "Benefits", "10002", "taichi", "benefits.htm", ".");
add_subentry("20003", "Where did it Begin", "10002", "taichi", "history.htm", ".");
add_subentry("20005", "Tai Chi Practice", "10002", "taichi", "forms.htm", ".");
add_subentry("20006", "Stories of old Masters", "10002", "taichi", "stories.htm", ".");
add_subentry("20008", "The Tai Chi Symbol", "10002", "taichi", "symbol.htm", ".");
add_subentry("20009", "FAQ", "10002", "taichi", "faq.htm", ".");

add_subentry("20101", "Overview", "10003", "chikung", "index.html", ".");
add_subentry("20102", "What it is", "10003", "chikung", "chikung.htm", ".");
add_subentry("20104", "Benefits", "10003", "chikung", "benefits.htm", ".");
add_subentry("20103", "Where did it Begin", "10003", "chikung", "history.htm", ".");
//add_subentry("20105", "Chi Kung Exercises", "10003", "chikung", "exercises.htm", ".");
add_subentry("20106", "FAQ", "10003", "chikung", "faq.htm", ".");

add_subentry("20201", "Yon-Wu (Tai Chi)", "10004", "taichi", "yon-wu.htm", ".");
add_subentry("20202", "Karate-Jutsu", "10004", "karate", "jutsu.htm", ".");

add_subentry("20301", "Overview", "10006", "karate", "index.html", ".");
add_subentry("20302", "What it is", "10006", "karate", "karate.htm", ".");
add_subentry("20306", "Lineage", "10006", "karate", "lineage.htm", ".");
add_subentry("20303", "Benefits", "10006", "karate", "benefits.htm", ".");
add_subentry("20304", "Competition", "10006", "karate", "competition.htm", ".");
add_subentry("20305", "Kobujitsu/Kobudo", "10006", "karate", "kobujitsu.htm", ".");

