var bilder = new Array(); 

bilder[00] = "Bilder/27_radau_01.png"; 
bilder[01] = "Bilder/27_radau_02.png"; 
bilder[02] = "Bilder/27_radau_03.png";
bilder[03] = "Bilder/27_radau_04.png";
bilder[04] = "Bilder/27_radau_05.png";
bilder[05] = "Bilder/27_radau_06.png";
bilder[06] = "Bilder/27_radau_07.png";
bilder[07] = "Bilder/27_radau_08.png";
bilder[08] = "Bilder/27_radau_09.png";
bilder[09] = "Bilder/27_radau_10.png";
bilder[10] = "Bilder/27_radau_11.png";
bilder[11] = "Bilder/27_radau_12.png";
bilder[12] = "Bilder/27_radau_13.png";
bilder[13] = "Bilder/27_radau_14.png";
bilder[14] = "Bilder/27_radau_15.png";
bilder[15] = "Bilder/27_radau_16.png";
bilder[16] = "Bilder/27_radau_17.png";
bilder[17] = "Bilder/27_radau_18.png";
bilder[18] = "Bilder/27_radau_19.png";
bilder[19] = "Bilder/27_radau_20.png";
bilder[20] = "Bilder/27_radau_21.png";
bilder[21] = "Bilder/27_radau_22.png";
bilder[22] = "Bilder/27_radau_23.png";
bilder[23] = "Bilder/27_radau_24.png";
bilder[24] = "Bilder/27_radau_25.png";
bilder[25] = "Bilder/27_radau_26.png";
bilder[26] = "Bilder/27_radau_27.png";
bilder[27] = "Bilder/27_radau_28.png";
bilder[28] = "Bilder/27_radau_29.png";
bilder[29] = "Bilder/27_radau_30.png";
bilder[30] = "Bilder/27_radau_31.png";
bilder[31] = "Bilder/27_radau_32.png";
bilder[32] = "Bilder/27_radau_33.png";
bilder[33] = "Bilder/27_radau_34.png";
bilder[34] = "Bilder/27_radau_35.png";
bilder[35] = "Bilder/27_radau_36.png";


addLoadEvent(function() {
	try {
		var index = Math.floor(Math.random() * bilder.length);
		var logo = document.createElement('img');
		logo.setAttribute('src', bilder[index]);
		logo.setAttribute('alt', 'Logo: Radau');
		document.body.appendChild(logo);
	} catch(err) {
		
	}
});