<!--

  var jscript;

  if ( (navigator.userAgent.indexOf("a/3",6) == -1) &&
       (navigator.userAgent.indexOf("a/4",6) == -1) ) {
    jscript = 0;
  }
  else {
    jscript = 1;
  }

  if ( jscript ) {

    imgsrc = "/images/";			// Bilder-Verzeichnis
    
    nobild_off            = new Image(94,12);
    nobild_off.src        = imgsrc+"nobild.gif";

    but_tomate_on         = new Image(25,25);
    but_tomate_on.src     = imgsrc+"but_tomateon.gif";
    but_tomate_off        = new Image(25,25);
    but_tomate_off.src    = imgsrc+"but_tomateoff.gif";
    nobild_but_tomate     = new Image(94,12);
    nobild_but_tomate.src = imgsrc+"navtxt_test.gif";

    but_kaese_on          = new Image(25,25);
    but_kaese_on.src      = imgsrc+"but_kaeseon.gif";
    but_kaese_off         = new Image(25,25);
    but_kaese_off.src     = imgsrc+"but_kaeseoff.gif";
    nobild_but_kaese      = new Image(94,12);
    nobild_but_kaese.src  = imgsrc+"navtxt_wissen.gif";
    
    but_pilz_on           = new Image(25,25);
    but_pilz_on.src       = imgsrc+"but_pilzon.gif";
    but_pilz_off          = new Image(25,25);
    but_pilz_off.src      = imgsrc+"but_pilzoff.gif";
    nobild_but_pilz       = new Image(94,12);
    nobild_but_pilz.src   = imgsrc+"navtxt_fun.gif";

    but_fisch_on          = new Image(25,25);
    but_fisch_on.src      = imgsrc+"but_fischon.gif";
    but_fisch_off         = new Image(25,25);
    but_fisch_off.src     = imgsrc+"but_fischoff.gif";
    nobild_but_fisch      = new Image(94,12);
    nobild_but_fisch.src  = imgsrc+"navtxt_mit.gif";

    but_salami_on         = new Image(25,25);
    but_salami_on.src     = imgsrc+"but_salamion.gif";
    but_salami_off        = new Image(25,25);
    but_salami_off.src    = imgsrc+"but_salamioff.gif";
    nobild_but_salami     = new Image(94,12);
    nobild_but_salami.src = imgsrc+"navtxt_back.gif";

    but_pepper_on         = new Image(25,25);
    but_pepper_on.src     = imgsrc+"but_pepperon.gif";
    but_pepper_off        = new Image(25,25);
    but_pepper_off.src    = imgsrc+"but_pepperoff.gif";
    nobild_but_pepper     = new Image(94,12);
    nobild_but_pepper.src = imgsrc+"navtxt_suche.gif";

    but_zwiebel_on        = new Image(25,25);
    but_zwiebel_on.src    = imgsrc+"but_zwiebelon.gif";
    but_zwiebel_off       = new Image(25,25);
    but_zwiebel_off.src   = imgsrc+"but_zwiebeloff.gif";
    nobild_but_zwiebel    = new Image(94,12);
    nobild_but_zwiebel.src = imgsrc+"navtxt_team.gif";    
  }

  function imgAdj(imgDocID, mouseMov) {
    if ( jscript ) {
      if ( mouseMov == "in" ) {
         document.images[imgDocID].src = eval(imgDocID + "_on.src");
         document.images['nobild'].src = eval("nobild_" + imgDocID + ".src");
      }
      if ( mouseMov == "out" ) {
         document.images[imgDocID].src = eval(imgDocID + "_off.src");
         document.images['nobild'].src = eval("nobild" + "_off" + ".src");
      }
    }
  }

// -->