<!--
aImgs = new Array();
aImgs[0] = 'http://www.sothys.de/images/index/bild_oben.jpg';
aImgs[1] = 'http://www.sothys.de/images/index/bild_oben02.jpg';
aImgs[2] = 'http://www.sothys.de/images/index/bild_oben03.jpg';
aImgs[3] = 'http://www.sothys.de/images/index/bild_oben04.jpg';
aImgs[4] = 'http://www.sothys.de/images/index/bild_oben05.jpg';
aImgs[5] = 'http://www.sothys.de/images/index/bild_oben06.jpg';
aImgs[6] = 'http://www.sothys.de/images/index/bild_oben07.jpg';

 
iIndex = 0;
 
function zufallbild()
{
iIndex = Math.round(Math.random() * (aImgs.length - 1));
document.write('<table border="0" width="900" cellspacing="0" cellpadding="0" background="' + aImgs[iIndex] + '">')
}
 

zufallbild();
//-->
