function BilderInit()
{
    Normal0 = new Image();
    Normal0.src = "images/en-d006.jpg";
    Highlight0 = new Image();
    Highlight0.src = "images/ena_mont.jpg";

    Normal1 = new Image();
    Normal1.src = "images/en-d001.jpg";
    Highlight1 = new Image();
    Highlight1.src = "images/succputr.jpg";

    Normal2 = new Image();
    Normal2.src = "images/en-d002.jpg";
    Highlight2 = new Image();
    Highlight2.src = "images/deroagre.jpg";

    Normal3 = new Image();
    Normal3.src = "images/en-d003.jpg";
    Highlight3 = new Image();
    Highlight3.src = "images/eucoalde.jpg";

    Normal4 = new Image();
    Normal4.src = "images/en-d004.jpg";
    Highlight4 = new Image();
    Highlight4.src = "images/cepehort.jpg";
}

function Bildwechsel(Bildnr,Bildobjekt)
{
     window.document.images[Bildnr].src = Bildobjekt.src;
}


function adjustV()
/* setzt oberen Abstand (1. Tabellenzeile) auf ein Zehntel der Rahmenhöhe   */
/* wenn die >500 ist, wenn innere Höhe <500 und 800x600 oder weniger auf 1  */
{
	hi=window.innerHeight;
	if (hi>500)
		{h=Math.floor((hi*0.1));}
	else
		if (screen.width<=800)
			{h=1;}
		else
			{h=1;}
	return h;
}


function adjustH()
/* setzt Breite der Trennspalte auf 80, wenn ca. 800x600   */
/* sonst auf "abgerundet((Fensterbreite-Schriftsatz)/2,5)" */
{
	var ss=440;
	wi=window.innerWidth;
	if (wi>650)
		{b=Math.floor((wi-ss)/2.5);}
	else
		{b=80;}
	return b;
}