		<!--
		var quotes = new Array(
											"\n\"Super happy with your work Junk Hauler L.L.C.\nThank you\"\n"+"<span style=\"font-size:80%\">B. Johansson\n(Bellevue-WA)<\/span>",
											"\n\n\"I shall happily refer clients to you. Warmest regards\"\n"+"<span style=\"font-size:80%\">S. Roth (Kent-WA)<\/span>",
											"\n\n\"Thank you for a job well done\"\n"+"<span style=\"font-size:80%\">J. Davis (Kirkland-WA)<\/span>",
											"\n\n\"The guys did a great job. Thanks.\"\n"+"<span style=\"font-size:80%\">B. Olson (Seattle-WA)<\/span>",
											"\n\"Thanks again. Your employees were both timely and efficient\""+"\n<span style=\"font-size:80%\">K. Nelson (Renton-WA)<\/span>",
											"\n\"The best Junk removal company in the greater Seattle area. Thanks guys\""+"\n<span style=\"font-size:80%\">D. Clinton (Seattle-WA)<\/span>",
											"\"I just wanted to let you know that your Seattle crew did a great job. Thank you\""+"\n<span style=\"font-size:80%\">R. Mathews\n(Seattle-WA)<\/span>",
											"\n\"I sincerely thank you for your professional and ethical service\""+"\n<span style=\"font-size:80%\">J. Thompson\n(Tacoma-WA)<\/span>",
											"\"Thanks for the great job!\nI've never had anyone do a job in such a timely and professional manner\"\n"+"<span style=\"font-size:80%\">S. Kelly (Seattle-WA)<\/span>",
											"\n\"Not only were the price very competitive, they are true professionals\"\n"+"<span style=\"font-size:80%\">P. Young (Bellevue-WA)<\/span>"
											);
		var selectedQuote = 0;
		var quoteInterval = null;
		function quotes_swap() {
			selectedQuote++;
			if(selectedQuote==quotes.length) {
				selectedQuote = 0;
				}
			if(qObj=elementExist("testimonials_box")) {


				while(quotes[selectedQuote].indexOf("\n")>=0) {
					quotes[selectedQuote] = quotes[selectedQuote].replace("\n","<br \/>");
					}

				qObj.innerHTML = "<div>"+quotes[selectedQuote]+"<\/div>";
				}
			}
		function quotes_play() {
			quotes_stop();
			quotes_shuffle();
			quotes_swap();
			quoteInterval = setInterval("quotes_swap()",6000);
			}
		function quotes_stop() {
			if(quoteInterval) {
				clearInterval(quoteInterval);
				}
			}
		function sortRandom() {
			sort_order = Math.round(Math.random());
			if(Math.round(Math.random())) {
				return (sort_order*-1);
				}
			return Math.round(Math.random());
			}
		function quotes_shuffle() {
			quotes.sort(sortRandom);
			}
		window.onload = new Function(getCombinedFunctionCode(window.onload,quotes_play));
		//-->
		
