// PATIENTEN - SUBMENUE ZU DEN THEMEN

function fwLoadMenus() {
  if (window.fw_menu_0) return;
    window.fw_menu_0_1 = new Menu("");
     fw_menu_0_1.fontWeight="normal";
     fw_menu_0_1.hideOnMouseOut=true;
	 
	 // Hier bitte die Farb-Werte fuer die Submenus eintragen
	 
	 HintergrundFarbe= "#E7F7D6";
	 SchriftFarbe= "#333399";
	 RolloverSchriftFarbe= "#88BF22";
	 
	 // Hier bitte die Farb-Werte fuer die Submenus eintragen - Ende
	 
	 //BLASENKREBS 
  window.fw_menu_0 = new Menu(HintergrundFarbe, SchriftFarbe, RolloverSchriftFarbe);
  fw_menu_0.addMenuItem("Ursachen","location='01_01_10.php'"); // einfach Name des Menupunktes und Linkziel eintragen
  fw_menu_0.addMenuItem("Symptome","location='01_01_20.php'"); // ueberfluessige Menupunkte loeschen
  fw_menu_0.addMenuItem("Therapie","location='01_01_30.php'"); // weitere Menupunkte durch duplizieren der Zeilen hinzufuegen
  fw_menu_0.addMenuItem("Gesundheitstipps","location='01_01_40.php'");
  fw_menu_0.addMenuItem("Kontakt","location='01_01_50.php'");
  fw_menu_0.addMenuItem("Downloads","location='01_01_60.php'");
  fw_menu_0.hideOnMouseOut=false;
  /* w_menu_0.addMenuItem("<nobr>langer Submenupunkt</nobr>","location='01_01_06.php'");*/  // Lange Namen mit <nobr> vor Umbruch schuetzen
  
     // KINDLICHES BETTNÄSSEN 
  window.fw_menu_1 = new Menu(HintergrundFarbe, SchriftFarbe, RolloverSchriftFarbe);
  fw_menu_1.addMenuItem("Grunds&auml;tzliches","location='01_02_10.php'");
  fw_menu_1.addMenuItem("M&ouml;gliche Ursachen","location='01_02_20.php'");
  fw_menu_1.addMenuItem("Ein Weg ins Trockene","location='01_02_30.php'");
  fw_menu_1.addMenuItem("Sekund&auml;re Enuresis","location='01_02_40.php'");
  fw_menu_1.addMenuItem("Krankheitsanzeichen","location='01_02_50.php'");
  fw_menu_1.addMenuItem("Vorurteile","location='01_02_60.php'");
  fw_menu_1.addMenuItem("Kontakt","location='01_02_70.php'");
  fw_menu_1.addMenuItem("Downloads","location='01_02_80.php'");
  fw_menu_1.hideOnMouseOut=false;
   
      // EREKTILE DYSFUNKTION 
  window.fw_menu_2 = new Menu(HintergrundFarbe, SchriftFarbe, RolloverSchriftFarbe);
  fw_menu_2.addMenuItem("Erektionsstörungen","location='01_03_10.php'");
  fw_menu_2.addMenuItem("Ursachen","location='01_03_20.php'");
  fw_menu_2.addMenuItem("Behandlungen","location='01_03_30.php'");
  fw_menu_2.addMenuItem("Partnergespr&auml;ch","location='01_03_40.php'");
  fw_menu_2.addMenuItem("Kontakt","location='01_03_50.php'");
  fw_menu_2.addMenuItem("Downloads","location='01_03_60.php'");
  fw_menu_2.hideOnMouseOut=false;
  
     // PROSTATAERKRANKUNGEN 
  window.fw_menu_3 = new Menu(HintergrundFarbe, SchriftFarbe, RolloverSchriftFarbe);
  fw_menu_3.addMenuItem("Die Prostata","location='01_04_10.php'");
  fw_menu_3.addMenuItem("Was ist eine BPH?","location='01_04_20.php'");
  fw_menu_3.addMenuItem("Prostatakrebs","location='01_04_30.php'");
  fw_menu_3.addMenuItem("Prostatitis","location='01_04_40.php'");
  fw_menu_3.addMenuItem("Vorsorge","location='01_04_50.php'");
  fw_menu_3.addMenuItem("Prostata-Di&auml;t","location='01_04_60.php'");
  fw_menu_3.addMenuItem("Kontakt","location='01_04_70.php'");
  fw_menu_3.addMenuItem("Downloads","location='01_04_80.php'");
  fw_menu_3.hideOnMouseOut=false;
  fw_menu_3.writeMenus();
  
  // weitere Menus einfach hier anfuegen und Durchnumerierung beachten 
  
  
  
} // fwLoadMenus()

