   <!--
// BEREICHSANGABE !!!
var bereich = 0;

   var navd = 0;

   // free from frames
   if (self.location.href != top.location.href) {
      top.location.href = self.location.href;
   }

   // test if rollover is working
   var ok   = false;
   if (parseInt(navigator.appVersion) >= 3) {
      ok = true;
   }

   // preload pictures
   if (ok) {
      norm = new Array();
	  high = new Array();
	  for (i=1; i<=12; i++) {
	     high[i] = new Image();
		 norm[i] = new Image();
	  }
	  norm[1].src = "../pixel/d.gif";
	  high[1].src = "../pixel/h1_f.gif";
	  norm[2].src = "../pixel/d.gif";
	  high[2].src = "../pixel/h1_h.gif";
	  norm[3].src = "../pixel/d.gif";
	  high[3].src = "../pixel/h1_d.gif";
	  norm[4].src = "../pixel/d.gif";
	  high[4].src = "../pixel/h1_e.gif";
	  norm[5].src = "../pixel/d.gif";
	  high[5].src = "../pixel/h1_s.gif";
	  norm[6].src = "../pixel/d.gif";
	  high[6].src = "../pixel/h1_k.gif";
	  norm[7].src = "../pixel/t.gif";
	  high[7].src = "../pixel/p_f.gif";
	  norm[8].src = "../pixel/t.gif";
	  high[8].src = "../pixel/p_h.gif";
	  norm[9].src = "../pixel/t.gif";
	  high[9].src = "../pixel/p_d.gif";
	  norm[10].src = "../pixel/t.gif";
	  high[10].src = "../pixel/p_e.gif";
	  norm[11].src = "../pixel/t.gif";
	  high[11].src = "../pixel/p_s.gif";
	  norm[12].src = "../pixel/t.gif";
	  high[12].src = "../pixel/p_k.gif";
   }

// rollover funktions (change picture x with picture y)
function low(x,y) {
       document.images["image" + x].src = norm[y].src;
   }
   function hi(x,y) {
       document.images["image" + x].src = high[y].src;
   }

// -->