// JavaScript Document
// Konstanten deklariren
intImgCount = 4;
strImgPath = '_img/start/';
strImgPrefix = 'bild';
strImgSuffix = '.jpg';
function randomImage() { 
// Zufalsszahl erzeugen
intRandomNumber = Math.ceil(Math.random()*intImgCount);
	
tmpSrc = strImgPath + strImgPrefix + intRandomNumber + strImgSuffix;


// Bild einfügen
// document.getElementById('random-image').src = strImgPath + strImgPrefix + intRandomNumber + strImgSuffix;
document.writeln('<img src="' + strImgPath + strImgPrefix + intRandomNumber + strImgSuffix + '" alt="Startbild" width="575" height="383" />');
return false;
}





