//Javascript Document


var quotations = new Array()
quotations[0]= "The intricate design of Mr. Teel\'s work is truly amazing. It is a must to view the work personally as pictures cannot capture the unique character of the work.<br /> &#8212;Rod & Michelle, Sacramento"
quotations[1]= "Thank you very much for a wonderful addition to our restaurant and to Gold River. I am truly impressed with the attention to detail that David has put into our glass rack. It is the focus of attention in our wine shop and draws rave reviews on a daily basis. Not only is it an art piece but the functionality of the piece is remarkable. <br /> &#8212;Scott Litteral, Il Forno Classico"
quotations[2]= "...we thought so much of David\'s artwork, we purchased several more pieces to give to our friends. Their reaction mirrored our own, 'What a wonderful and unique gift.'  It's obvious David puts  a great deal of thought into their creation and design. As one of our friends told us, they truly are works of art.<br /> &#8212;Joan and Yale, El Dorado Hills"
quotations[3]= "David's designs are unique and his artistry is superb. We are very pleased with our piece.<br /> &#8212;Dan & Patti, El Dorado Hills"

var num = 0;
var quoteCt = quotations.length;
function display()
{
	/*a=Math.floor(Math.random()*quotations.length);*/
	num++;	
				if (num == quoteCt)  
				{
					num = 0;		
				}
	/*document.getElementById('quotation').innerHTML=quotations[a];*/
	document.getElementById('quotation').innerHTML=quotations[num];
	setTimeout("display()",15000);

}

