function newQuote()
{
	//quote text
	var xxx = 1;
	var quotes = new Array();
	quotes[0] = "I am extremely happy with the effort that was put into my job by Tri County Drywall and the overall quality of the completed project.";
	quotes[1] = "Tri County's crews are clean and efficient.  Our remodel looks fantastic and the outside of the house is looking great; you would never know they were here!";
	quotes[2] = "We were pleased with the communication, fair pricing and honest and informed answers to all of our questions through the process.";
	quotes[3] = "Thanks!  I will recommend your company services to my friends and to my new community!";
	quotes[4] = "The workers put their hearts into their work which truly shows in the finished product.";
	quotes[5] = "The patch department at Tri County Drywall is more dependable than any other that I've experienced.";
	quotes[6] = "I never have a problem scheduling for final walks and 1 year warranties.  I can always depend on Tri County whenever I'm in a pinch.";
	quotes[7] = "I've been with Tri-County Drywall for years.  Their service and quality speak for themselves.  They are the best drywall company in the Northwest.";
	quotes[8] = "You'll never find a more reliable company that cares about their clients.";
	quotes[9] = "Tri County always provides me with quality workmanship at a fair price.";
	quotes[10] = "Tri County Drywall offers customization at an affordable price that other companies just don't offer.";
	
	//quote attributees
	var quoters = new Array();
	quoters[0] = "Homeowner";
	quoters[1] = "Homeowner";
	quoters[2] = "Homeowner";
	quoters[3] = "Homeowner";
	quoters[4] = "Homeowner";
	quoters[5] = "MJG Development";
	quoters[6] = "SLS Custom Homes";
	quoters[7] = "Kelly-Harrison, Inc.";
	quoters[8] = "Eslinger Builders";
	quoters[9] = "Cox Brothers Construction";
	quoters[10] = "EBI";


	//the workings
	//selects a random quote between 1 and 10
	var x = Math.round(Math.random()*10);
	//selects the destination of the text we'll place
	var p = document.getElementById("quoteswapper");
	//create the paragraph
	newQuote = document.createElement("p");
	//the text node with text from the selected quote
	quoteText = document.createTextNode(quotes[x]);
	//create textnode sibling strong elemenet
	strong = document.createElement("strong");
	//select the corresponding quote attributee from the array quoters and put it in a text node
	attributee = document.createTextNode(quoters[x]);
	//put it all in proper like
	p.appendChild(newQuote).appendChild(quoteText);
	p.appendChild(strong).appendChild(attributee);
}