// JavaScript Document

/*-  Generate random stat on hopepage script -*/

var quotes = new Array("British Petroleum approved seal repair center", 
	"Pumps and pump equipment repair 35% of PSSG total product",
	"Six consecutive years of double digit growth",
	"A fluid company in a fluid industry",
	"Fastest growing I/R ARO pump distributor",
	"#1 Royal Purple distributor in the United States",
	"#1 performing AES SEAL distributor in the United States",
	"#1 AES mechanical seal system distributor in the United States",
	"Same day mechanical seal repair","Ask us about water savings."
	);


var leng = quotes.length;

var rndNum = Math.floor(leng * Math.random());	


var string = (quotes[rndNum]);

