//
// InnovaSage - Quotes Script v1.3 (quotes.js)
//
// Display a random quote (customer testimonial, etc.)
// Author: InnovaSage Inc. for Xtreme Tire Garage INc.
//

var quotes = new Array;
var author = new Array;

// Quotes

quotes[0] = "Just wanted to thank you for your help with the tires yesterday. They were great in the rain yesterday and we were sure glad to have them. The car handles a lot better and the road noise is minimal compared to before. Great service!!"
author[0] = "Chris Fricke"

quotes[1] = "Just a little follow up note... I am the fellow with the Dodge Magnum on which you installed the Michelin Primacy tires. The car has not steered & handled as well since brand new!!  The alignment and tires perform very well. I am recommending you to my son & daughter in-law as she has recently bought a new Mini Cooper and will be looking for a set of winter tires. Thanks again for the great service & I will be looking forward to dealing with you in the future."
author[1] = "K. Crowder"

quotes[2] = "I drove the car today what a blast to drive it, feels like a fast little go-kart. I have attached a picture with the new wheels on the car, they look great!"
author[2] = "L. Aielli"

quotes[3] = "... my husband came in to your garage one Saturday morning a couple of months back. He later sent me to your garage to purchase new tires. Anyway, I wanted to send along a gratitude of thanks for the tires you recommended for our Pathfinder. They have been fantastic. The truck definitely handles much better and in all conditions which we've now got to test on a few occasions..."
author[3] = "D. Bloxam"

quotes[4] = "I had a blowout of my tire on my way from Windsor to Toronto. I simply want to sincerely thank you and your team for the excellent service and hospitality you provided to me. Everyone treated me so courteously and professionally. Your entire organization deserves a 'pat on the back'. Your customer care is outstanding!!!! Thanks for everything. I'm a very satisified customer of yours."
author[4] = "Greg Drouillard"



// Calculate a random quote index

index = Math.floor(Math.random() * quotes.length);

// Display the quote-author combo
// document.write("<DL>");
// document.write("<DT><strong>" + quotes[index] + "</strong></DT>");
// document.write("<DD><em>"     + author[index] + "</em>    </DD>");
// document.write("</DL>");

document.write("<blockquote>");
document.write("<p><strong>" + quotes[index] + "</strong><br>");
document.write("   <em>"     + author[index] + "</em>    </p>");
document.write("</blockquote>");

// End
