/*
     This script downloaded from www.JavaScriptBank.com
     Come to view and download over 2000+ free javascript at www.JavaScriptBank.com
*/
/*
* 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("Home","index.html", "_top");
				
mc.Add("News","news.htm", "_top");

mc.Add("Unternehmen","unternehmen.htm", "_top");

mc.Add("Leistung","leistungen.htm","_top");
	mc.Start();
	mc.Add("Hardware","hardware.htm", "_top");
	mc.Add("Speicherprogrammierbare Steuerung","sps.htm","_top");
	mc.Add("Materialflussrechner","MFR1.htm", "_top");		
	mc.Add("Lagerverwaltungsrechner","LVR.htm","_top");		
	mc.Add("Radio Frequency Identifitcation (RFID)","RFID.htm", "_top");		
	mc.Add("Prozessvisualisierung","PV.htm","_top");		
	mc.Add("Service","service.htm", "_top");		
	mc.End();

mc.Add("Referenzen","referenzen.htm", "_top");
	mc.Start();
	mc.Add("Kunden","kunden.htm", "_top");
	mc.Add("Projektinformationen","informationen.htm", "_top");
	mc.Add("Pressemeldungen","pressemeldungen.htm", "_top");
	mc.Add("Zertifizierungen","zertifizierungen.htm", "_top");
	mc.End();

mc.Add("Stellenangebote","stellen.htm", "_top");


mc.Add("Impressum","impressum.htm", "_top");

mc.End();


mc.Draw();

