﻿/* The easiest way is to place the below JavaScript code after the above HTML. The better way would be to add in the <head> section of the document and call the rotatequote() function through the window.onload event. However this can cause problems if you have other scripts that use the window onLoad settings -->
	
double quote: &#34;
single quote: &#39; 
http://www.ascii.cl/htmlcodes.htm */

function randOrd(){
try {
	return (Math.round(Math.random())-0.5); 
	} 
	catch (err){}
} 


var myquotes = new Array(
	'&#34;The efficiency, the maintenance, the productivity - it&#39;s why we&#39;ve gone with all Volvos. That&#39;s the only product we have.&#34;<br /><br />Butch Felts<br />Lee Mar Building & Constr.<br />Fort Meyers, FL, USA',
	'&#34;The Volvo equipment is set up for quick service. We spend less time servicing it and Volvo is well ahead of any others in the industry as far as service and cost of ownership.&#34;<br /><br />Mark Boyer<br />Boyer, Inc.<br />Houston, TX, USA',	
	'&#34;I think Volvo puts engineering and quality in all parts of the machine.&#34;<br /><br />John Ford<br />Ford Sawmills Inc.<br />Vincennes, IN, USA',
	'&#34;The care Volvo puts into designing their equipment is evident. We&#39;ve had machines running for up to 10 years, with virtually no downtime.&#34;<br /><br />Jay Carbary<br />Evergreen Development & Construction Company<br />Tampa, FL, USA',
	'&#34;Volvo has a considerably longer life. We&#39;ve tried competitors and for our particular application, Volvo is right for us. It&#39;s a no-brainer.&#34;<br /><br />Scott Hughes<br />Parton Lumber Co., Inc.<br />Rutherfordton, NC, USA',
	'&#34;Fuel efficiency is a major issue. Volvo gets 28% better fuel economy than others we&#39;ve run. That, and the support behind the units, is why we decided on Volvo.&#34;<br /><br />John Dowden<br />Red Top Rentals, Inc.<br />Indianapolis, IN, USA',	
	'&#34;Volvo takes that extra step in ensuring all of its components are of top quality.&#34;<br /><br />Kurt Lavrinc<br />Prime Construction Group<br />Orlando, FL, USA',	
	'&#34;Volvo just keeps on going. When everything else is down, Volvo is still running.&#34;<br /><br />Larry Waltrip<br />Waltrip Recycling<br />Williamsburg, VA, USA',		
	'&#34;Everyone is lovin&#39; this Volvo Equipment. It&#39;s quicker. It&#39;s efficient. The production has certainly improved since we&#39;ve gone Volvo.&#34;<br /><br />Dayton Pitts<br />Vice President of Operations<br />F&P Construction<br />Reno, Nevada, USA'
);

try {
	myquotes.sort(randOrd);
} 
catch (err){}

var active = true;

function rotatequote()
{
	try {
		if (active) {
			thequote = myquotes.shift();
			myquotes.push(thequote);
			document.getElementById('quotetext').innerHTML = thequote;
		}
		
		t=setTimeout("rotatequote()",7500);
	} 
	catch (err){}
}

function pauserotation()
{
	active = false;
}

function resumerotation()
{
	active = true;

}