//***************************************
// ROTATE IMAGES
//***************************************
var theImages = new Array();

theImages[0] = '_top_00.jpg';
theImages[1] = '_top_01.jpg';
theImages[2] = '_top_02.jpg';
theImages[3] = '_top_03.jpg';
theImages[4] = '_top_04.jpg';
theImages[5] = '_top_05.jpg';
theImages[6] = '_top_06.jpg';


var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
	preBuffer[i] = new Image()
	preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
	document.write('<a href="javascript:self.location.reload();"><img border="0" height="160" width="590" alt="Aurest GmbH" src="fileadmin/templates/01/'+theImages[whichImage]+'"></a>');
}