<!--
function randomImage(){
	images = new Array("ad_main1.jpg","ad_main2.jpg","ad_main3.jpg");
	r = Math.floor(Math.random()*images.length);
	caption = new Array();
	caption[0] = "TDEC has always delivered good quality, on time, at a fair price. I frequently have recommended TDEC to other firms seeking to outsource their data entry requirements.";
	caption[1] = "For over ten years, TDEC has been assisting us in a variety of ways; sometimes under extremely tight deadlines, but always with quality in mind.";
	caption[2] = "TDEC has provided excellent service and has helped improve the banks efficiencies by surpassing the established goal of a 15-minute turn-around time.";
	html = "<img src='images/"+images[r]+"' alt='"+caption[r]+"'>";
	document.write(html);
}

function randomQuote(){
	quotes = new Array();
	quotes[0] = "q01.jpg";
	quotes[1] = "q02.jpg";
	quotes[2] = "q03.jpg";
	quotes[3] = "q04.jpg";
	quotes[4] = "q05.jpg";
	quotes[5] = "q06.jpg";
	quotes[6] = "q07.jpg";
	quotes[7] = "q08.jpg";
	quotes[8] = "q09.jpg";
	quotes[9] = "q10.jpg";
	caption = new Array();
	caption[0] = "I am extremely pleased with the overall performance of TDEC and the great service provided by your people.";
	caption[1] = "The continued growth of our business is due exclusively to TDECs unique combination of service, accuracy and cost control.";
	caption[2] = "Youve always done a good job at keeping costs in line and staying more than competitive.";
	caption[3] = "We look on TDEC as a valuable partner with us in providing quality service to our clients.";
	caption[4] = "This has allowed us to provide expert assistance to our core business needs that otherwise might not have been possible.";
	caption[5] = "TDEC has been assisting us in a variety of ways; sometimes under extremely tight deadlines, but always with quality in mind.";
	caption[6] = "TDEC has helped improve the banks efficiencies by surpassing the established goal of a 15-minute turn-around time.";
	caption[7] = "TDEC has always delivered good quality, on time, at a fair price.";
	caption[8] = "The prompt and courteous assistance from your knowledgeable staff is always appreciated.";
	caption[9] = "The benefits we realize from TDEC are far beyond that which might ordinarily be expected from an ordinary data entry firm.";
	r = Math.floor(Math.random()*quotes.length);
	html = "<img src='images/"+quotes[r]+"' alt='"+caption[r]+"'>";
	document.write(html);
}
// -->
