//store the quotations in arrays
quotes = new Array(4);
authors = new Array(4);
quotes[0] = "The new site has helped us to promote the Chamber more efficiently, increase our revenues, and enhance our communications with existing and potential members worldwide.";
authors[0] = "Franco De Angelis \<br/>\ Executive Director\<br/>\Italy-America Chamber of Commerce\<br/>\New York, NY ";
quotes[1] = "We now have a sales incentive web site that reinforces the Peroni USA brand image, provides incentives and motivates our USA sales force.";
authors[1] = "A. Corsano\<br/>fmr Marketing Director\<br/>\Birra Peroni USA";
quotes[2] = "Our website provides a host of useful information to Italian companies through an eye - appealing graphic interface and easy to use on line database.";
authors[2] = "Dott. Giovanni Bifulco\<br/>\Director\<br/>\Italian Trade Commission\<br/>\Atlanta";
quotes[3] = "This has been an exciting project for the museum. The new site has helped to generate funding and enthusiasm for the museum's expansion. We look forward to expanding the site as the museum grows.";
authors[3] = "Dr. Joseph Scelsa\<br/>\President\<br/>\Italian American Museum\<br/>\New York";

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

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



//done
