// JavaScript Document

function getRandomTheme()
	{
	// Motive
	themes = new Array;
	themes[0] = 'pix/head-1.jpg';
	themes[1] = 'pix/head-2.jpg';

	// Zufallsauswahl
	zufallszahl = Math.random();
	motivanzahl = themes.length;
	auswahl = Math.round(zufallszahl*(motivanzahl-1))
	
	// Ausgabe
	document.writeln('<img src="'+themes[auswahl]+'" width="960" height="250" border="0" />');
	}