﻿/*
WICHTIG!!!
Alle Bilder muessen der Reihe nach nummeriert sein (1, 2, 3, ...) und die Endung muss .jpg sein (!klein geschrieben!).
Die variable "anzahl" muss der Anzahl der Bilder entsprechen.
*/
function random_start()
{
	random_time = setInterval("rando()",3000);
}
function rando()
{
	var anzahl = 15; 				// Anzahl der Bilder
	zufall = Math.round(Math.random()*anzahl);
	if (zufall == 0 || zufall >= (anzahl + 1))
	{
		zufall = Math.round(Math.random()*anzahl);
		if (zufall == 0 || zufall >= (anzahl + 1))
			zufall = 3;
	}
	document.getElementById("random_bild").src = "http://www.er-motorsport.de/image/random/" + zufall + ".jpg";
}

