var theImages = new Array()

//Random-loading images
theImages[0] = '<em>&quot;You and your staff have been wonderful, and the Software Development services have always been excellent. I wish you and your company great success in the future and please keep it up the good work...</em>&quot;<br /><strong>Mr. A. K. Jain<br />Regional Manager (HQ), UFDC</strong> ' // replace with names of images
theImages[1] = '<em>&quot;All our software from TechInfiniti perform well and have been delivered on time and within budgets. Their technical expertise coupled with outstanding customer service helped us to work as a team to successfully execute challenging projects. I recommend TechInfiniti for any small-medium business looking to build customized web based software for their needs&quot;</em><br /><strong>Murali Srinivas, </strong><strong>COO, Mimo Finance</strong>' // replace with names of images
theImages[2] = '<em>&quot;From my first contact with TechInfiniti to the finished product, I was extremely impressed with the professionalism which the TechInfiniti team brought to their work. Not only was the price right, but the expertise and skills with which they did their jobs were much appreciated. And the result is a website that I and my staff are really EXCITED about! They\'re GREAT!&quot;</em><br/><strong>Debangshu Bhadra, WebNovices LLC </strong>' // replace with names of images
theImages[3] = '<em>&quot;I’ve worked with the TechInfiniti team for more than two years, and their professionalism and commitment to service is second to none.  They help eliminate the risks of outsourcing for my clients.&quot;</em><br/><strong>Vincent Laganella, <br/ >Laganella Consulting Group </strong>' // replace with names of images
theImages[4] = '<em>&quot;Amit and his team at TechInfinti InfoSolutions have provided Beanstalk Revenue with superior service and skill.  We have been impressed with the quality of work, the timeliness of deliverables, and the communication throughout the entire development process.&quot;</em><br/><strong>Aric Berquist, Co-founder, <br/ >Beanstalk Revenue LLC</strong>' // replace with names of images

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(){
	/*if(whichImage==0){
		document.write('<p align="left" class="midText2" style="padding-right:10px;"><em>'+theImages[whichImage]+'</p>');
	}
	else if(whichImage==1){
		document.write('<p align="left" class="midText2" style="padding-right:10px;"><em>'+theImages[whichImage]+'</p>');
	}
	else if(whichImage==2){
		document.write('<p align="left" class="midText2" style="padding-right:10px;"><em>'+theImages[whichImage]+'</p>');
	}
*/
document.write('<div align="left">'+theImages[whichImage]+'</div>');
}