var quotes = [
  "<p>\"We have been using Aware IM for nearly a year. I am really loving the product and I have been very impressed with the support.</p> <p>I am truly amazed that a department manager can create a multiuser, web based, database application with limited programming skills...</p> <span class=\"person\">Charles Zillmann, Central Engineering Testing,<br /> Cisco Systems, Inc.</span>",
  "<p>\"Our development and use of Aware IM is faster than I had imagined. It's the best thing since 'sliced bread'...\"</p> <span class=\"person\">Rod Clements, <br />IT Manager, <br> Albright & Wilson</span>",
  "<p>\"This is a revolutionary product and I'm thrilled to be using it...\"</p> <span class=\"person\">Brad S. Konia, <br />CEO Hostland</span>",
  "<p>\"Never have I been able to develop business applications as fast as with Aware&nbsp;IM...\"</p> <span class=\"person\">Wido Jansen, <br />Algevex BV</span>",
  "<p>\"The combination of features, functionality and performance open up a whole new set of opportunities for our company...\"</p> <span class=\"person\">Pete Bradstreet, <br />Creative Interface</span>",
  "<p>\"We are very impressed with the product and very excited about developing applications for our clients with Aware&nbsp;IM...\"</p> <span class=\"person\">Todd Whitehurst, <br />CDMworld.com, Inc.</span>",
  "<p>\"Simply stunning! Aware&nbsp;IM turns out to be the PERFECT tool with the best support I ever encountered...\"</p>",
  "<p>\"This is the first development environment I have tried that actually delivers results...\"</p>",
  "<p>\"I do not believe there are any other development packages whose support even comes close...\"</p>",
  "<p>\"I found Aware&nbsp;IM to be very easy to use. I have not written a single bit of html, java or any other code...\"</p>",
  "<p>\"You guys have the best development tool available for web applications...\"</p>",
  "<p>\"Aware&nbsp;IM is a remarkable piece of work...\"</p>",
  "<p>\"Aware&nbsp;IM: only 2 words - IT ROCKS!\"</p>",
  "<p>\"Aware&nbsp;IM is the greatest web development tool ever created. Your support is incredible...\"</p>",
  "<p>\"I can't imagine developing without Aware&nbsp;IM..EVER...\"</p>"
];
var quoteIndex = -1;

function setBannerQuote()
{
  if(++quoteIndex == quotes.length) {quoteIndex = 0;}
  document.getElementById('bannerQuote').innerHTML=quotes[quoteIndex];
  setTimeout("setBannerQuote()", 8000);
}