<!-- Random Images
var imagenumber = 8 ;                     // Anzahl der Bilder
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
images[1] = "http://www.gia-online.de/entente_florale/images/random/img_1.jpg "
images[2] = "http://www.gia-online.de/entente_florale/images/random/img_2.jpg "
images[3] = "http://www.gia-online.de/entente_florale/images/random/img_3.jpg "
images[4] = "http://www.gia-online.de/entente_florale/images/random/img_4.jpg "
images[5] = "http://www.gia-online.de/entente_florale/images/random/img_5.jpg "
images[6] = "http://www.gia-online.de/entente_florale/images/random/img_6.jpg "
images[7] = "http://www.gia-online.de/entente_florale/images/random/img_7.jpg "
images[8] = "http://www.gia-online.de/entente_florale/images/random/img_8.jpg "
var image = images[rand1]
document.write('<img src="' + image + '" border="0" width="768" height="182" alt="Entente Florale Deutschland">')
// -->

