// speicher die Zitate in Arrays ab
quotes = new Array(12) ;
image = new Array(12) ;
quotes[0] = "the serpentine is a lovely lake and there is a drowned forest at the bottom." ;
image[0] = "collection/a01s" ;
quotes[1] = "a tender flickering light of imagination ...blooms" ;
image[1] = "collection/a02s" ;
quotes[2] = "snow queen's kiss" ;
image[2] = "collection/a03s" ;
quotes[3] = "Jelly fish" ;
image[3] = "collection/a04s" ;
quotes[4] = "o love's but a dance where time plays the fiddle." ;
image[4] = "collection/a05s" ;
quotes[5] = "Starfish it's no good sitting lazily." ;
image[5] = "collection/a06s" ;
quotes[6] = "jewels from the deep" ;
image[6] = "collection/a07s" ;
quotes[7] = "Angel wing bowl" ;
image[7] = "collection/a08s" ;
quotes[8] = "Perfume bottle in ebony and oregon opal" ;
image[8] = "collection/b03s" ;
quotes[9] = "Perfume bottle in oregon opal & gold" ;
image[9] = "collection/b07s" ;
quotes[10] = "Perfume bottle in oregon opal with yellow gold" ;
image[10] = "collection/b08s" ;
quotes[11] = "Perfume bottle in oregon opal & yellow gold" ;
image[11] = "collection/b09s" ;
// berechne einen zufälligen Index
index = Math.floor(Math.random( ) * quotes.length) ;
// zeige das Zitat an
document.write("<Table BORDER=0><TR><TD ALIGN=center>\n") ;
document.write("<img src=" + "" + image[index] + "\.jpg>") ;
document.write("</TD></TR><TR><TD>\n") ;
document.write("" + "\"" + quotes[index] + "\"\n") ;
document.write("</TD></TR></TABLE>\n") ;
