//store the quotations in arraysquotes = new Array(10);authors = new Array(10);quotes[0] = "The Chamber offers a support network for area businesses and has diverse program offerings to help businesses of all sizes, from the one-person entrepreneurial company to the large corporation.";authors[0] = "Char Grunwaldt, Triangle Business Journal";quotes[1] = "I would encourage every business to be a part of the Chamber.";authors[1] = "Ida Terbet, Keller Williams Realty";quotes[2] = "The Chamber has afforded us great opportunities to network with some of the Triangle's top companies, and as a result, we have acquired a number of large accounts.";authors[2] = "Ronald D. Andrews, Black Pages USA";quotes[3] = "The Greater Raleigh Chamber has been a tremendous means of boosting our visibility.";authors[3] = "Linda Folger, TriSure Corporation";quotes[4] = "By participating in the educational events and networking events offered by the Chamber, we have not only learned more about our community but have developed lasting business relationships.";authors[4] = "Linda Folger, TriSure Corporation";quotes[5] = "Our customers feel comfortable doing business with us, since the Chamber is viewed as a major player in the workings of our community.";authors[5] = "Gerald & Sherry FitzGibbon, The Mad Hatter Air Duct Cleaning & Chimney Sweep Service Inc.";quotes[6] = "The Chamber consistently keeps us informed on new trends in business, economy predictions, and other issues important to us.";authors[6] = "Gerald & Sherry FitzGibbon, The Mad Hatter Air Duct Cleaning & Chimney Sweep Service Inc.";quotes[7] = "All businesses, especially smaller family-owned businesses, can really benefit from joining the Chamber.";authors[7] = "Gerald & Sherry FitzGibbon, The Mad Hatter Air Duct Cleaning & Chimney Sweep Service Inc.";quotes[8] = "We've been able to make important connections with the area's business leaders, our elected officials and our peers -- which has led to new business opportunities and helped fuel our company's rapid growth.";authors[8] = "Barbara Mulkey, Mulkey Engineers and Consultants";quotes[9] = "Aside from the business value, we support the Chamber&#8221; because of the leadership it provides in our community. From economic development to our quality of life, the Greater Raleigh Chamber leads the way.";authors[9] = "Barbara Mulkey, Mulkey Engineers and Consultants";//calculate a random indexindex = Math.floor(Math.random() * quotes.length);//display the quotation//document.write("<DL>\n");document.write("<p class=quote>" + "\&#8220;" + quotes[index] + "\&#8221;\n" + "</p>");document.write("<p class=person>" + authors[index] + "\n" + "</p>");//document.write("</DL>\n");