  var howMany = 4
  var quote = new Array(howMany)
 
   quote[0] = new Array(2)
  quote[0][0]='Manifest Solutions has been a great addition to our IT support needs. They are a reliable source that offers insight to areas of need and works diligently to resolve any issues. There support has been timely and responsive to our growing needs in this area.'
  quote[0][1]="<b>Robert Hays</b><br\><i>Ohio Steel Industries</i>"
  
   quote[1] = new Array(2)
  quote[1][0]='Manifest provides us with convenient access to the people who can help us work and re-work our web sites, an ongoing activity.  Our plan is to continue to provide a fresh website look for our visitors, and Manifests people are responsive and talented in helping us get the “look” and what is called functionality we want.'
  quote[1][1]="<b>Tom Turner</b><br\><i>simplifiedshakespeare.com</i>"

 quote[2] = new Array(2)
  quote[2][0]='After trying out several IT vendors over the years, it was a great pleasure to find a company committed to the same high degree of customer service that we value: planning competence, appropriate communication and timely execution. From systems development, network integration, quick service to training our associates, we find the people of Manifest to be a great long-term partner.'
  quote[2][1]="<b>Doug Helser</b><br\><i>Lindig Benefit Consultants</i>" 

   quote[3] = new Array(2)
  quote[3][0]='Response time, whether by email or phone, has been exceptional, allowing me to stay focused on my business, not internet and web issues.'
  quote[3][1]="<b>Rhonda Blue</b><br\><i>Blue Designs, LLC</i>"

function rndnumber(){
        var randscript = -1
        while (randscript < 0 || randscript > howMany -1 || isNaN(randscript)){
                randscript = parseInt(Math.random()*(howMany+1))
        }
        return randscript
}
     quo = rndnumber()
     quox = quote[quo][0]
     quox = quox.substring(0,80)
     if (quox.substring(79,80)== " ")
     {
        quox = quox.substring(0,79)
     }
     person = quote[quo][1]
document.write('"' + quox + '... <a href="testimonials.aspx">more</a>') 