/* This JavaScript (Random Quotes) developed by Scott Clark
   The Source is available at http://www.clarksco.com/blog/
   Copyright 2005 Clark Consulting */

// Math that sets the number of the quote to be displayed

var num_of_quotes = 7;
quotes = Math.floor (num_of_quotes * Math.random());

// Database of Quotes

if (quotes==0) {
	name="&mdash; Sinjay V.";
	body="During my initial contact with Thermalogic I was impressed with their staff's knowledge of their product in addition to the many questions they asked about our system to insure optimum system performance.";
}
if (quotes==1) {
	name="&mdash; Paul S.";
	body="It's always a pleasure speaking with Thermalogic. They call back quickly and answer all of my questions honestly and thoroughly.";
}
if (quotes==2) {
	name="&mdash; Mary J.";
	body="We have consistent and on-time delivery with Thermalogic. They always work hard to satisfy our requests, making it a pleasure to work with them.";
}
if (quotes==3) {
	name="&mdash; Chris R.";
	body="During prototype testing Thermalogic worked with us, always listened to our comments, and happily implemented changes that we overlooked during the specification stage. Their understanding of thermal management and expert advice gave us new ideas for our system design in ways we had never imagined.";
}
if (quotes==4) {
	name="&mdash; Joanne B.";
	body="I was amazed that I received my prototype built to my specifications from Thermalogic faster than I receive parts from our \"off the shelf\" vendors.";
}
if (quotes==5) {
	name="&mdash; Sandra C.";
	body="All invoices, packing slips and other paperwork from Thermalogic are neat and orderly and their attention to details makes my job in Accounts Payable easy.";
}
if (quotes==6) {
	name="&mdash; Danny F.";
	body="Thermalogic's four year warranty, on-time delivery, and consistent quality make it an easy decision to choose their product.  It is one less part I need to worry about having failures, so we can maintain our quality reputation in the marketplace.";
}

// Outputs the HTML to your web page.

document.write(''+ body +'<br />');
document.write('' + name + '');
