
quotes = new Array(4);
authors = new Array(4);
quotes[0] = "Thank you Aish HaTorah for the good work you do and the message you put out. I could have used you in my life about 25 years ago.";
authors[0] = "Steven Spielberg";
quotes[1] = "Aish HaTorah means to me the passion of Torah, the passion of teaching, the passion of learning. The study of Torah, the source of Jewish values, is the way to Jewish survival.";
authors[1] = "Elie Weisel";
quotes[2] = "Aish HaTorah enables young Jews to visit their heritage, to become immersed in it, to become better Jews, prouder Jews and more secure Jews.";
authors[2] = "Binyamin Netanyahu";
quotes[3] = "Congratulations to Aish HaTorah, for it's success in educating Jews about the power of their history and strength of their tradition.";
authors[3] = "Bill Clinton";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<div class=\"quote\">\n");
document.write("<p class=\"summary\">\"" + quotes[index] + "\"</p>\n");
document.write("<p class=\"attribute\">-" + authors[index] + "</p>\n");
document.write("</div>\n");