var arrQuotes = new Array();
arrQuotes[0] = new Array("We have enjoyed a long term relationship with Valley Drapery and Upholstery, a delightful family owned business... They offer creative input, excellent follow through, and consistently fine service.", "Richard Savage, Savage and Associates, Encino, CA", 11000);
arrQuotes[1] = new Array("I came from a background Haute Couture fashion, and having dealt with ball gowns, have a very specific idea of how I expect a drapery to hang. With my attention to detail, I need an expert team behind me, and I've found it with Valley Drapery and Upholstery.", "Grady Cooley, New York, NY", 11000);
arrQuotes[2] = new Array("So many vendors will awe you with their sales pitch - but there's no follow through. The staff at Valley is a dedicated team of craftsman - they are truly a pleasure to work with.", "Martyn Lawrence Bullard, Martynus-Tripp, Los Angeles, CA", 10000);
arrQuotes[3] = new Array("I have worked with David [Sewitz] and his team for over 20 years. Valley Drapery and Upholstery has made all of my draperies and bedding flawlessly. Their attention to detail is second to none. I consider them part of the A-team that can create anything I dream up without saying 'It can't be done.'", "Susan Cohen, Susan Cohen Associates, Inc., Santa Monica, CA", 14000);
arrQuotes[4] = new Array("Valley Drapery's quality and style when manufacturing window treatments for us is something we never have to worry about, and can always trust that the installation will run smoothly and our clients will be thrilled with their beautiful work. They are very responsive to any situation that arises on the job site and problems that come about because of construction. Valley is always wiling to work with us to create a solution that is functional and beautiful.", "Waldo Fernandez, Waldo's Designs, Los Angeles, CA", 16000);
arrQuotes[5] = new Array("Valley Drapery & Upholstery is my go-to consultant for my interior projects whenever I require a fabulous inventory of fabrics, professional upholstery and custom furniture. Speaking as an architect, I am grateful to have Michael assist me on my interior's projects where they also give great value to my clients.", "Richard Sol, Architect, Los Angeles, CA", 14000);

// Start off the rotation with a random quote
var c = Math.floor(Math.random()*arrQuotes.length);

function initQuote() {
	document.getElementById("quote").innerHTML = "&#8220;" + arrQuotes[c][0] + "&#8221";
	document.getElementById("quoteAttr").innerHTML = "&#8212;" + arrQuotes[c][1];
	holdQuote();
	}

function pause() {
	setTimeout('rotateQuote()', 1000);
	}

function holdQuote() {
	setTimeout('pause()', arrQuotes[c][2]);
	}

function rotateQuote() {
	c++;
	if(c > (arrQuotes.length-1)) {
		c = 0;
		}

	document.getElementById("quote").innerHTML = "&#8220;" + arrQuotes[c][0] + "&#8221";
	document.getElementById("quoteAttr").innerHTML = "&#8212;" + arrQuotes[c][1];
	holdQuote();
	}