function init()
{
 pic = new Grafiken();
 pic.b['tr1'] = root+"layout/glas.gif";        // transparentes Pixel
 pic.b['gr1'] = root+"layout/grey.gif";        // graues Pixel
 pic.b['karo'] = root+"layout/karo.gif";       // graues Karo (Mitte weiss)
 pic.b['karounv'] = root+"layout/karounv.gif"; // grau/weisses Karo (Mitte transparent)
 pic.b['or1'] = root+"layout/orange.gif";      // oranges Pixel
 pic.b['qrt'] = root+"layout/quad2.gif";       // rotes Quadrat
 pic.b['qor'] = root+"layout/quado2.gif";      // oranges Quadrat
 pic.b['psrrt'] = root+"layout/pfeils.gif";    // roter Pfeil nach rechts (Service)
 pic.b['psror'] = root+"layout/pfeilso.gif";   // oranger Pfeil nach rechts (Service)
 pic.b['pllrt'] = root+"layout/pfeill.gif";    // roter Pfeil nach links
 pic.b['pllor'] = root+"layout/pfeillo.gif";   // oranger Pfeil nach links
 pic.b['plrrt'] = root+"layout/pfeilr.gif";    // roter Pfeil nach rechts
 pic.b['plror'] = root+"layout/pfeilro.gif";   // oranger Pfeil nach rechts
 pic.b['plort'] = root+"layout/pfeilt.gif";    // roter Pfeil nach oben
 pic.b['ploor'] = root+"layout/pfeilto.gif";   // oranger Pfeil nach oben
 pic.b['plurt'] = root+"layout/pfeilb.gif";    // roter Pfeil nach unten
 pic.b['pluor'] = root+"layout/pfeilbo.gif";   // oranger Pfeil nach unten
 pic.b['qlrt'] = root+"layout/home.gif";       // rotes Quadrat (Link)
 pic.b['qlor'] = root+"layout/homeo.gif";      // oranges Quadrat (Link)
 pic.b['fhg'] = root+"layout/fhg_name.gif";    // FhG-Name (zum Logo)
 pic.b['iws'] = root+"layout/iws_logo.gif";    // IWS-Logo
 pic.load();
 M = new LinksM();
 S = new ServiceM();
 F = new FussZ('iws');
 initmenues();
 if (is.min)
 {
 	var H = (is.ns)? window.innerHeight : document.body.clientHeight;

  var M_top = 110;
  M.show(15,M_top,168);

  var MH = (is.ns4)? document.LinksMenueDiv.clip.height : (is.ie)? document.all.LinksMenueDiv.scrollHeight : document.getElementById("LinksMenueDiv").offsetHeight;
  M_top += (H-MH-M_top < 0)? H-MH-M_top : 0;
  if (M_top < 15) M_top = 15;
  LinksMenue.moveTo(15,M_top);

  var S_bottom = MH + M_top + 80 - H + 14;
  if (S_bottom < 0) S_bottom = -31;
  S.show(15,96 - S_bottom,168); // 65

	var C_top = 15;
  F.show(205,H,560);
  Folge.moveTo(205,C_top);
  Folge.show();

  var CH = (is.ns4)? document.FolgeDiv.clip.height : (is.ie)? document.all.InhaltDiv.scrollHeight : document.getElementById("InhaltDiv").offsetHeight;
  var F_top = (C_top+CH < H-60)? H-60 : C_top+CH;
	FussZeile.moveTo(205,F_top);
 }
}
