$(document).ready(function() {

	var quotes = new Array ();
	
	quotes[0] = "Your customer service is exemplary... and I will not hesitate using your products and services for future projects. Your work will not go unnoticed.";
	quotes[1] = "MOSS is a very customer-oriented company - friendly, responsive, and very professional in every way.";
	quotes[2] = "We're delighted and so happy with our new phones! Thanks for helping us dramatically change the way we serve our public and get our work done.";
	quotes[3] = "It is a pleasure to have you folks doing the work. With MOSS, you don't have to be concerned with the quality of the work. It is always above par.";
	quotes[4] = "It has been a pleasure to work with your team of professionals. You are the best I have worked with... thank you for a very rewarding experience.";
	quotes[5] = "MOSS has once again gone above and beyond... I called on a Saturday morning for an emergency fiber repair. The repair was performed promptly and the client was extremely pleased.";
	quotes[6] = "We want to express our deep appreciation and gratitude for the excellent work that you and your team did in our building. We could not have dreamed of a better outcome.";
	quotes[7] = "Thanks to John, Mike and Bob from MOSS for all of their work on this project. MOSS truly understands the meaning of 'partnership' and we greatly appreciate it.";
	quotes[8] = "Thanks so much for taking the time to help us on our road to automation. Your contribution is greatly appreciated!";
	
	var names = new Array ();
	
	names[0] = "Mitchell Swindell";
	names[1] = "Roger Ransom";
	names[2] = "Kimberly Potter";
	names[3] = "Gregory Yost";
	names[4] = "Benjamin Gorham Jr.";
	names[5] = "Walt Helsel, RCDD";
	names[6] = "Paul Scholten";
	names[7] = "Michael Cross";
	names[8] = "Sue Garza";
	
	var titles = new Array ();
	
	titles[0] = "Chief Technology Officer, NOVO 1";
	titles[1] = "Director of Technology, Bangor Public Schools";
	titles[2] = "Library Director, Redford Township District Library";
	titles[3] = "Pharmaceuticals Buyer, Borgess Medical Center";
	titles[4] = "Site Manager, By Light Professional IT Services";
	titles[5] = "Technology Engineer, URS Corporation";
	titles[6] = "Administrator, Christ Memorial Church";
	titles[7] = "Senior Analyst, City of Kalamazoo";
	titles[8] = "Center Director, Grandville Avenue Public Library";

	var i = Math.floor(9*Math.random());
	
	var a = quotes[i];
	var b = names[i];
	var c = titles[i];

	var quote = document.getElementById("quote");
	quote.appendChild(document.createTextNode(a));
	
	var name = document.getElementById("name");
	name.appendChild(document.createTextNode(b));
	
	var title = document.getElementById("title");
	title.appendChild(document.createTextNode(c));

})
