/* --------------------------------------------------------
Letzte Änderung: 08 August 2007
---------------------------------------------------------*/

/* Skript Zufallsbild
***********************/

			function makeArray(n) {
			this.length = n;
			for (var i=1; i<=n; i++) {
			this[i] = ""; 
			}
			return this;
			}
			var i;
			function randomimagekeyvisual() {
			i = Math.floor(4 * Math.random() + 1);
			return image[i];
			}
			image = new makeArray(4);
			image[1]="all_graphics/keyvisual_index_01.jpg";
			image[2]="all_graphics/keyvisual_index_02.jpg";
			image[3]="all_graphics/keyvisual_index_03.jpg";
			image[4]="all_graphics/keyvisual_index_04.jpg";
   document.write('<img src=' + '"' + randomimagekeyvisual() + '"' + ' alt="Hauptmotiv" width="860" height="220" />');