// JavaScript Document
var aTestimonials = new Array();
aTestimonials[0] = '<p><span class="large">&#8220;</span>... After our new website went live, the  results were instantaneous.  Our bounce rate dropped 28%, and our  daily on-line sales since then have almost tripled!<span class="large">&#8221;</span></p>';
aTestimonials[0] += '<br /><span class="signature" > Jeff Robertson';
aTestimonials[0] += '<br />General Manager';
aTestimonials[0] += '<br />Fawlty Towers Resort Motel</span></div><br />';

aTestimonials[1] = '<p><span class="large">&#8220;</span>... and within a very short time we had a new website. We liked the banner he created so much we had it put on our van and business cards. I&acute;m not a visionary person so I relied heavily on Matt&acute;s artistic ability. We are very pleased and feel he is more than fair on his pricing for the time he spent creating the website. <span class="large">&#8221;</span></p>';
aTestimonials[1] += '<br /><span class="signature" > Ann Voldness';
aTestimonials[1] += '<br />Owner';
aTestimonials[1] += '<br />Malaber Feed &amp; Farm</span>';


var nQuote = 0;

function loadQuote()
{
	document.getElementById('quoteDiv').innerHTML = aTestimonials[0];	
}
function nextQuote()
{
	var quoteDiv = document.getElementById('quoteDiv');
	var nNext = nQuote + 1;
	if(aTestimonials.length > nNext)
	{
		quoteDiv.innerHTML	= aTestimonials[nNext];
		nQuote += 1;
	}
	else
	{
		quoteDiv.innerHTML = aTestimonials[0];
		nQuote = 0;
	}
}