<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var ranImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

ranImages[0] = 'visual_1.jpg'
ranImages[1] = 'visual_2.jpg'
ranImages[2] = 'visual_3.jpg'
ranImages[3] = 'visual_4.jpg'

// do not edit anything below this line

var j = 0
var p = ranImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = ranImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="img/'+ranImages[whichImage]+'" width="537" height="150" border="0"  alt="Harald v. Trotha - Unternehmer Coaching" />');
}

//  End -->
