// speicher die Zitate in Arrays ab
quotes = new Array(5) ;
image = new Array(5) ;
quotes[0] = "Is that you my prince ? I have waited for you very long." ;
image[0] = "collection/s09s" ;
quotes[1] = "Odysseus cheats the Sirens by having himself tied to the mast of his ship." ;
image[1] = "collection/s10s" ;
quotes[2] = "Mermaids entice human lovers with their songs of enchantment." ;
image[2] = "collection/s11s" ;
quotes[3] = "Jewels from the deep" ;
image[3] = "collection/s12s" ;
quotes[4] = "....certain stars shot madly from their spheres to hear the sea-maid's music," ;
image[4] = "collection/s10bs" ;
// 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") ;