<!--// ===========================================

var Quote=new Array() // do not change this!
var Source=new Array()

Quote[0] = "Our Clients Tell Us Through Their Loyalty: Our Client Retention Rate is 92.14%";
Source[0] = "(12 months ending March 2004)";
Quote[1] = "Our Clients Tell Us By Recommending Our Services To Other Companies: 94.70% \"Would Recommend Our Services\"";
Source[1] = "(6 months ending March 2004)";
Quote[2] = "\"Local office and national management support is by far superior to any other company out there. Your company and employees continue to perform and demonstrate why you have become our guard vendor of choice. Keep up the good work.\"";
Source[2] = "Top 10 U.S. Bank";
Quote[3] = "\"I have been in this business for 15 years and this is hands-down the best service I have ever received.\"";
Source[3] = "National Retailer";
Quote[4] = "\"Compass Security has exceeded my expectations at this account. Specifically, Compass is extremely responsive and realizes that the clients' needs are of vital importance. This is what needs to be done to provide a safe and secure environment for our tenants.\"";
Source[4] = "Property Management Co.";
Quote[5] = "\"I have and will in the future recommend Compass Security when a company is looking to have the very best that this industry has to offer.\"";
Source[5] = "High-Tech Manufacturing Co.";
Quote[6] = "\"Compass Security is very professional and great to be associated with. I've been through a lot of different companies prior, but now I have a company that knows what the word security means. A very good company, great support staff and officers.\"";
Source[6] = "Transportation Co.";
Quote[7] = "\"Thanks to Lewis' [Lewis Morales, Security Manager] quick thinking, we were able to save over $1 million worth of product.\"";
Source[7] = "Biotech Manufacturing Co.";
Quote[8] = "\"I couldn't be more pleased with the security support that Compass provided us. If I have a similar need in the future, I would not consider using any other guard service.\"";
Source[8] = "CEO, Top 5 Transportation Co.";
Quote[9] = "\"Great job, very pleased, our Security Officer in charge is the best I have ever seen. The Branch Manager is always on top of things - thanks for great service.\"";
Source[9] = "Food Products Manufacturer";


var length = Quote.length;
var whichQuote=Math.round(Math.random()*(length-1));

function showQuote(){
	
	var fullquote;
	fullquote = "<p><br><span class=\"quote\">" + Quote[whichQuote] + "</span><br>";
	document.write(fullquote);
	
	//document.write(Quote[whichQuote]);
	//document.write{Source[whichQuote]);
	
}

function showSource(){
	
	var fullsource;
	fullsource = "<span class=\"source\">" + Source[whichQuote] + "</span><br></p>";
	document.write(fullsource);
	
	//document.write(Source[whichQuote]);
}

showQuote();
showSource();
-->