function fpQuote()
{
var numQuotes = 20;
var quote = new Array(numQuotes);

for ( var i=0; i<numQuotes; i++ )
   quote[i]= new String();

   quote[1] = '"...sophisticated, not complicated..."';
   quote[2] = '"...very impressive, very professional..."';
   quote[3] = '"...superior to anything else on the market by far..."';
   quote[4] = '"...fabulous, a breath of fresh air..."';
   quote[5] = '"...the tools of the trade for today\'s farmers..."';
   quote[6] = '"...a first class product..."';
   quote[7] = '"My hands may be full with the demands of the season, but with PAM the farm is at my fingertips."';
   quote[8] = '"PAM is a comprehensive, user friendly package that enables us to run our farming enterprise effectively and efficiently."';
   quote[9] = '"Helps make farming more efficient & profitable. Will be a valuable tool for the future generation."';
   quote[10] = '"Its magic. The computer used to be something I avoided, but now its the hub of our business"';
   quote[11] = '"The software is awesome. We are rapt!"';
   quote[12] = '"...I doubt that we could run our farm without PAM now"';
   quote[13] = '"...we love your software..."';
   quote[14] = '"...the livestock section is excellent"';
   quote[15] = '"...attention to detail is apparent throughout the program..."';
   quote[16] = '"...extremely flexible..."';
   quote[17] = '"...a state-of-the-art software program that puts farmers on an equal footing with other leading businesses."';
   quote[18] = '"Data entry is flexible and quick with the help of those Wizards"';
   quote[19] = '"...the best available in its class..."';
   quote[20] = '"If you\'re running PAM well you\'ve got your finger on the farm\'s pulse"';   

var ranNumber = (Math.floor(Math.random()*numQuotes)+1);

return quote[ranNumber];
}

