var quotes = new Array();
quotes[quotes.length] = new Array('The TVS is the greatest advancement in student transportation since I have attended NCSU.  The last few years I was getting disgusted with waiting, "wasting" countless hours worrying about getting to class on time.  That has all changed since the TVS.', 'NCSU');
quotes[quotes.length] = new Array('Love it.  Looks great and is an excellent idea!  Good Job!  I will put this to very good use, as I suspect many others will.', 'NCSU');
quotes[quotes.length] = new Array('This new system is a great idea. I can sit back in my apartment in the mornings and enjoy a few extra minutes of time.', 'Auburn');
quotes[quotes.length] = new Array('The TVS is incredible. It allows me to plan out my schedule more efficiently by knowing when the bus is on its way. Thank you for offering this service.', 'Auburn');
quotes[quotes.length] = new Array('This is a wonderful tool!! This will save many students a lot of time! It\'ll be perfect on rainy days!  Good work!', 'Auburn');
quotes[quotes.length] = new Array('This thing is great.  Thanks for the great technology.', 'Harvard');
quotes[quotes.length] = new Array('This is an awesome and extremely helpful tool. Thank you very much for implementing it.', 'Harvard');
quotes[quotes.length] = new Array('This is BRILLIANT!!!', 'Harvard');
quotes[quotes.length] = new Array('This is the best tool ever! Thank you so much for implementing this!  Outstanding!', 'Emory');
quotes[quotes.length] = new Array('This is sooo cool... and handy!', 'Emory');
quotes[quotes.length] = new Array('Thank you!  This is just the kind of thing needed to make using the shuttle easy. And making it available on the cell phone:  smart, very smart.', 'Emory');
quotes[quotes.length] = new Array('This is very helpful!!! Thank you!!', 'Alabama');
quotes[quotes.length] = new Array('What a very cool thing -- to have real-time display of bus locations. Great idea.', 'Alabama');
quotes[quotes.length] = new Array('This is awesome... one more reason to LOVE Alabama!!!  Great job guys.', 'Alabama');
quotes[quotes.length] = new Array('Wonderful, wonderful, wonderful.  I\'m sure use of this service is going to take off as people evangelize.  I\'ll be one.', 'Florida');
quotes[quotes.length] = new Array('Awesome!  My co-worker was trying to make a meeting downtown and debating whether to take the bus.  We pulled up the screen and saw the bus was still about 5 blocks away.  He ran for it, and I watched on the screen as the bus paused at his stop.  Very cool!  Without the GPS, he would have driven a car from campus to downtown.', 'Florida');
quotes[quotes.length] = new Array('Hello! I would like to thank you wholeheartedly for this wonderful service. It is the most convenient, particularly during summer time when bus service is limited. Thanks to your service, waiting and sweating in the pounding heat for an indefinite amount of time for the bus are a thing of the past.', 'Florida');
quotes[quotes.length] = new Array('This is great!! I love that you can also hide the routes you don\'t care about.', 'Florida');
quotes[quotes.length] = new Array('AMAZING! What a great idea!', 'Florida');
quotes[quotes.length] = new Array('This is wonderful! Thanks.', 'Yale');
quotes[quotes.length] = new Array('Wow!  What an amazing feature -- very useful in the cold.', 'Yale');
quotes[quotes.length] = new Array('Just wanted to let you know that the tracking service is really great.  Especially with the bad weather, it has made getting to and from campus much easier.  Good work!', 'Yale');

setInterval(rotateQuote, 15000);

function rotateQuote() {
  var index = Math.round(Math.random() * (quotes.length-1));
  var quote = quotes[index];
  var el = document.getElementById('quote');
  var text = quote[0] + '<br /><span>-- ' + quote[1] + ' Rider</span>';
  if (index != 15 && index != 16)
    text = '<br />' + text + '<br />&nbsp;';
  el.innerHTML = text;
}