﻿
var theImages = new Array() 

theImages[0] = 'testimonial1.png'
theImages[1] = 'testimonial2.png'
theImages[2] = 'testimonial3.png'
theImages[3] = 'testimonial4.png'
theImages[4] = 'testimonial5.png'

var theAlts = new Array() 

theAlts[0] = 'Client testimonial. With our move to Managed IT Services, FPA has really helped our firm position itself in a way that helps us grow while keeping our IT costs down. - TJ Jones. Gamble Jones Investment Counsel.'
theAlts[1] = 'Client testimonial. All of your staff whom I\'ve dealt with over the years, have always helped me make my job that much easier. Thank you for your support.  -Frank Mullens. Marketing Innovations International.'
theAlts[2] = 'Client testimonial. As our trusted technology partner, their expertise and guidance has been invaluable.  We feel more secure knowing they are always there top support us. - Stu Jaffe. Kirsch, Kohn & Bridge'
theAlts[3] = 'Client testimonial. It has been a pleasure working with FPA, and I can only rave over the high standards that you have maintained relative to our hardware and software. - Sharon Blunk. Crane Asset Management'
theAlts[4] = 'Client testimonial. I especially appreciate the &quot;bench strength&quot; at FPA.  the talent and resources are wide and deep.  They\'ve never let me down.  Without even a pause. -Janet R. Halbert. JRH Consulting Group'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a href="clienttestimonials.aspx"><img border="0" src="images/subpage/'+theImages[whichImage]+'" alt="'+theAlts[whichImage]+'"></a>');
}
