function fadeIn() {
	var item1 = $('testimonial');
	var item2 = $('testimonialBy');
	item1.fade(1);
	item2.fade(1);
	setTimeout("fadeOut()", 8000);
};

function doSwap() {
	var item1 = $('testimonial');
	var item2 = $('testimonialBy');
	var testimonial= new Array();
	var testimonialBy= new Array();
	testimonial[0] = "&quot;I was delighted with the advice given, and the service provided. Thank you.&quot;";
	testimonialBy[0] = "Mr Allsopp, Salisbury.";
	testimonial[1] = "&quot;The service provided couldn't have been bettered. I would have no hesitation in using Battens again.&quot;";
	testimonialBy[1] = "Mrs Clayton, Yeovil.";
	testimonial[2] = "&quot;The service we received was excellent, I would personally like to thank our solicitor for her work and patience. Many thanks.&quot;";
	testimonialBy[2] = "Mr Larkins &amp; Miss Swan, Dorchester.";
	testimonial[3] = "&quot;An excellently, proactive approach, very refreshing.&quot;";
	testimonialBy[3] = "Mr &amp; Mrs Sherwin, Shaftsbury.";
	testimonial[4] = "&quot;Your common sense approach was extremely valuable.&quot;";
	testimonialBy[4] = "Donna Bowman, Absolute Cooling Ltd.";
	testimonial[5] = "&quot;I would like to thank you for your kindness and dedication which you have shown in getting the details of my Will just right.&quot;";
	testimonialBy[5] = "Mrs A, Dorchester.";
	testimonial[6] = "&quot;I was impressed with the preparation prior to my initial meeting. Well done!&quot;";
	testimonialBy[6] = "Mr Tillotson, Somerset.";
	testimonial[7] = "&quot;Staff are very pleasant and courteous, it was a pleasure dealing with you.&quot;";
	testimonialBy[7] = "Mr Dove, Puddletown.";
	testimonial[8] = "&quot;My wife was very impressed with the kind and friendly way she was treated by all your staff when she visited your office.&quot;";
	testimonialBy[8] = "Mr J, Dorchester.";
	testimonial[9] = "&quot;You have restored my faith in Solicitors. Very professional, yet kind and interested.&quot;";
	testimonialBy[9] = "Mr K, Sherborne.";
	testimonial[10] = "&quot;Exceptional service, always ready to help and very responsive to any queries. Your staff always friendly and efficient. Thank you!&quot;";
	testimonialBy[10] = "Mr &amp; Mrs R, Weymouth.";
	testimonial[11] = "&quot;Absolutley outstanding service. I would certainly recommend your service! Many thanks.&quot;";
	testimonialBy[11] = "Ms A, Essex.";
	testimonial[12] = "&quot;Could not have wished for a more cooperative and friendly service.&quot;";
	testimonialBy[12] = "Mr &amp; Mrs Scott, Weymouth";
	testimonial[13] = "&quot;I was very pleased with the Property Litigation team's wonderful client care and the empathy they showed for my difficulties.&quot;";
	testimonialBy[13] = "Mrs J Hurlstone, Dorchester.";
	a = Math.floor(Math.random() * testimonial.length);
	while (item1.innerHTML == testimonial[a]);
      {
      a = Math.floor(Math.random() * testimonial.length);
      }
	
	item1.innerHTML = testimonial[a];
	item2.innerHTML = testimonialBy[a];
	setTimeout("fadeIn()", 500);
};

function fadeOut() {
	var item1 = $('testimonial');
	var item2 = $('testimonialBy');
	item1.fade(0);
	item2.fade(0);
	setTimeout("doSwap()", 500)
};

function startSwap() {
    setTimeout("fadeOut()", 8000);
};

window.addEvent('domready', function() {startSwap()});
