<!-- Begin

quotes = new Array(5);
authors = new Array(5);
company = new Array(5);
//First Quote
quotes[0] = "Very nice indeed, Seth did a great job! Made the script come to life just the way we would have hoped. We'll be back for more!";
authors[0] = "Janet Choynowski";
company[0] = "Immobel Group / Real-Buzz";
//Next Quote
quotes[1] = "Very professional results! On time. On budget. No hassle. None! I would gladly do business with Impact Spokesperson again.";
authors[1] = "Paul Barton";
company[1] = "Sellfire Value Marketing LLC";
//Next Quote
quotes[2] = "We were truly amazed with the quality of service and the personal care that went into our project. Impact Spokesperson is the best in the business! Thanks";
authors[2] = "Alexander Wilson";
company[2] = "Small Business Development Corp.";
//Next Quote
quotes[3] = "My entire experience with Impact Spokesperson was free of stress and worry. Not only was I impressed by their talent and professionalism...our client was blown away with the final result.";
authors[3] = "Ray Kelly";
company[3] = "Creative Director - Graphtek";
//Next Quote
quotes[4] = "From ordering our video; to placing the code on our website the whole process was so easy and seamless. A great product at a very competitive price.";
authors[4] = "Jason C.";
company[4] = "";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("</DL>\n");
document.write("<DT>"  + authors[index] + "\n");
document.write("<DT>" + company[index] + "\n");
document.write("</DL>\n");

//  End -->
