// speicher die Zitate in Arrays ab
quotes = new Array(17) ;
image = new Array(17) ;
quotes[0] = "Turmalin set in yellow gold and platinum" ;
image[0] = "collection/j01s" ;
quotes[1] = "Cultured Tahiti pearl set in yellow gold" ;
image[1] = "collection/j02s" ;
quotes[2] = "Cultured tahiti pearl in yellow gold" ;
image[2] = "collection/j03s" ;
quotes[3] = "Cultured pearl set in ebony" ;
image[3] = "collection/j04s" ;
quotes[4] = "Ebony with opal set in yellow gold" ;
image[4] = "collection/j05s" ;
quotes[5] = "Blue zircon set in white gold" ;
image[5] = "collection/j06s" ;
quotes[6] = "Diamond set in yellow gold" ;
image[6] = "collection/j07s" ;
quotes[7] = "36 diamonds set in yellow gold" ;
image[7] = "collection/j08s" ;
quotes[8] = "3 Saphires set  in yellow gold and titanium" ;
image[8] = "collection/j09s" ;
quotes[9] = "Ruby set in granulated yellow gold" ;
image[9] = "collection/j10s" ;
quotes[10] = "Turquoise set in platinum" ;
image[10] = "collection/j11s" ;
quotes[11] = "Moissonite set in granulated yellow gold" ;
image[11] = "collection/j12s" ;
quotes[12] = "Turmalin with 39 diamonds set in platinum" ;
image[12] = "collection/j13s" ;
quotes[13] = "Rough opal from Mintabie and ebony set in yellow gold " ;
image[13] = "collection/j14s" ;
quotes[14] = "Opal set in ebony and yellow gold" ;
image[14] = "collection/j15s" ;
quotes[15] = "Amethyst-Citrin with a cultured black pearl set in yellow gold" ;
image[15] = "collection/j16s" ;
quotes[16] = "Amolithe set in white and yellow gold" ;
image[16] = "collection/j17s" ;
// berechne einen zufälligen Index
index = Math.floor(Math.random( ) * quotes.length) ;
// zeige das Zitat an
document.write("<Table BORDER=0><TR><TD>\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") ;