// JavaScript Document

var theText = new Array() 


theText[0] = 'Hopes Windows has manufactured windows for the Robert H. Jackson Center, the John Sterling Law Buildings at Yale University, the Packard Manor in Chautauqua, and many other historic locations around the country?';

theText[1] = 'Cliffstar in Dunkirk was started over 100 years ago as a wine manufacturer called Star Wine?';

theText[2] = 'SKF made bearings for the Space Shuttle and the MPT (Mini Power Tool) used to upgrade the Hubble Telescope?';

theText[3] = 'Bush Industries started 50 years ago and now distributes products to over 50 countries every year?';

theText[4] = 'Titan X received the 2008 Supplier of the year Award from Volvo and will be the exclusive supplier of the next generation cooling modules for the entire family of heavy duty trucks in Europe?';

theText[5] = 'Cummins was the only company in the Industry to meet the 2010 EPA emissions requirements with the release of the 6.7 liter engine for the Dodge Ram Pickup Trucks in early 2007?';

theText[6] = 'The Grape Growers Cooperative in Westfield includes 150 growers and produces over 20,000 tons of grapes each year on over 3,400 acres?';

theText[7] = 'Acu-Rite has been in business over 50 years and makes industry leading products that are capable of measuring things 1/50th the size of a human hair?';

theText[8] = 'Purina Dog Chow, Purina Cat Chow, Fancy Feast, Friskies, Alpo, Mighty Dog, and several other high quality pet foods are manufactured right here at the Nestle Purina plant in Dunkirk?';


var j = 0
var p = theText.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
	preBuffer[i] = new Array()
	preBuffer[i].src = theText[i]
}
var whichText = Math.round(Math.random()*(p-1));
function showText(){
	document.write(theText[whichText]);
}
