/*
* 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("Grusswort","seite_2.html","rechts");
//	mc.Start();
//	mc.Add("MSN","http://msn.com/","_blank");
//	mc.Add("Yahoo","http://yahoo.com","_blank");
//		mc.Start();
//		mc.Add("Yahoo Canada","http://ca.yahoo.com/","_blank");
//		mc.Add("Yahoo France","http://fr.yahoo.com/","_blank");
//		mc.End();
//	mc.Add("Google","http://google.com","_blank");
//		mc.Start();
//		mc.Add("Google Images","http://www.google.com/imghp","_blank");
//		mc.Add("Google Groups","http://www.google.com/grphp","_blank");
//			mc.Start();
//			mc.Add("Programming","http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&group=comp.programming","_blank");
//			mc.Add("Databases","http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&group=comp.databases","_blank");
//				mc.Start();
//				mc.Add("Oracle","http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&group=comp.databases.oracle","_blank");
//				mc.Add("MSSQL Server","http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&group=comp.databases.ms-sqlserver","_blank");
//				mc.End();
//			mc.End();
//		mc.Add("Google Web Directory","http://www.google.com/dirhp","_blank");
//		mc.Add("Google News","http://news.google.com/","_blank");
//		mc.End();
//	mc.End();
mc.Add("Gottesdienste","seite_3.html","rechts");
//	mc.Start();
//	mc.Add("Tek Tips","http://www.tek-tips.com","_blank");
//	mc.Add("Java Sun Forums","http://forum.java.sun.com/","_blank");
//	mc.Add("PHP Builder","http://www.phpbuilder.com/board/","_blank");
//		mc.Start();
//		mc.Add("General Help","http://www.phpbuilder.com/board/forumdisplay.php?s=&forumid=2","_blank");
//		mc.Add("Newbies","http://www.phpbuilder.com/board/forumdisplay.php?s=&forumid=3","_blank");
//		mc.Add("Database","http://www.phpbuilder.com/board/forumdisplay.php?s=&forumid=6","_blank");
//		mc.End();
//	mc.End();
mc.Add("Veranstaltungen","seite_4.html","rechts");
//	mc.Start();
//	mc.Add("Windows","http://www.microsoft.com/windows/","_blank");
//	mc.Add("Development");
//		mc.Start();
//		mc.Add("Visual Studio","http://msdn.microsoft.com/vstudio/","_blank");
//		mc.Add("Books","http://msdn.microsoft.com/vstudio/using/Books/default.aspx","_blank");
//		mc.End();
//	mc.End();
mc.Add("Gemeindebrief","seite_5.html","rechts");
//	mc.Start();
//	mc.Add("Hosting","http://www.ecohosting.net","_blank");
//	mc.Add("Weather");
//		mc.Start();
//		mc.Add("Yahoo Weather","http://weather.yahoo.com/","_blank");
//		mc.Add("Canada Weather","http://www.canada.com/weather/","_blank");
//		mc.End();
//	mc.Add("News");
//		mc.Start();
//		mc.Add("Canada.com","http://www.canada.com/","_blank");
//		mc.Add("BBC","http://www.bbc.com","_blank");
//		mc.Add("CNN","http://www.cnn.com","_blank");
//		mc.End();
//	mc.End();
mc.Add("Gemeindeleben","seite_6.html","rechts");
mc.Add("Aus unseren Kirchenbüchern","seite_7.html","rechts");
//	mc.Start();
//	mc.Add("Mitglieder","seite_7.html","rechts");
mc.Add("Archiv","seite_8.html","rechts");
//	mc.End();
mc.Add("Historie","historie/index.html","rechts");
mc.Add("Unsere Kirche","seite_9.html","rechts");
//
mc.Add("Kontakt","seite_10.html","rechts");
//mc.End();
mc.Add("Impressum","seite_11.html","rechts");
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();

