var testimonials = new Array();
var randomnumber;
var tnumber = 0;
var showtime = 6000;
testimonials[0] = "Thanks John for a thoroughly professional job.  From first call to tidying up afterwards, you and your team were efficient, prompt..."
testimonials[1] = " Without your quick response and  and fast attention to our bathroom leak we would have been in real trouble, thanks again for everything...";
testimonials[2] = "Thanks again to team for the rapid response and diagnosis, I thought we were going to be in real trouble with the basement filling up...";
testimonials[3] = "Just wanted to say thank you again for saving the day. I was very happy with your explanation of my options and your recommendations...";
testimonials[4] = "Brilliant. Dave & Damien were quick and friendly. Kept me informed of costs at all times. Insisted on clearing up after job was complete...";
testimonials[5] = "I contacted 1st Express because my kitchen tap would not turn off. I was very impressed with the speed with which my call was dealt with...";
testimonials[6] = "Damien and Martin were fantastic, kept me fully informed about work & cost, very polite, I would not hesitate to recommend them.";
testimonials[7] = "I found 1st Express to be quick, efficient and will certainly use them again.";
testimonials[8] = "Marvelous service!";
testimonials[9] = "I am very pleased and have already recommended 1st Express to someone else.";
testimonials[10] = "I have used 1st Express twice now and I couldn't fault their service and expertise.";
testimonials[11] = "1st Express' engineer was very polite and very profressional.";


function changeText() {
	tnumber = tnumber + 1;
	if(tnumber == testimonials.length) tnumber = 0;
	$('.testimonials strong').fadeOut('fast', function () {
		$(this).html('<img border="0" alt="" src="/var/am/25211/287320-quoteFirst.jpg" />&nbsp;&nbsp;' + testimonials[tnumber] + '&nbsp;&nbsp;<img border="0" alt="" src="/var/am/25211/287310-quoteEnd.jpg" />');
		$(this).fadeIn('fast', function () {
			t = setTimeout("changeText()", showtime);
		} );
	});
}

$(document).ready( function () {
	$('.testimonials strong').html('<img border="0" alt="" src="/var/am/25211/287320-quoteFirst.jpg" />&nbsp;&nbsp;' + testimonials[tnumber] + '&nbsp;&nbsp;<img border="0" alt="" src="/var/am/25211/287310-quoteEnd.jpg" />');
	var t = setTimeout("changeText()", showtime);
});
