// JavaScript Document
$(document).ready(function() {
	MyTest=new Array();
	//$("div#homeimgshow > img").hide();
    //$("div#homeimgshow > img").each(function(i){
	MyTest[0]= 'My cat Psycho loves the visits and special attention he gets and I never feel unsure about leaving him when I go away. J Thrussell';
	MyTest[1]= 'I was very happy with the service you provided, he was not at all stressed when I returned, and he is usually a nervous cat. G Berry';
	MyTest[2]= 'He really enjoys their walks. She has a real affinity with Stan and leaving him in her care is the next best thing to being with him myself!. J Armitage';
	MyTest[3]= 'She is extremely professional and works hard to provide a tailored service, specific to my needs and the needs of my dogs. A Mitchener';
	MyTest[4]= 'She handled him with great care and understanding, just what Leo needed being a rescue cat with a troubled past. J Wridley';
	MyTest[5]= 'She is a highly capable pet carer and has always proved herself to be enthusiastic, extremely caring and reliable. I would be happy to recommend her services. D Beckley';
	selectTest();
 });
function selectTest(jp) {
	$("#testcont").hide();
	var j = Math.floor( Math.random() * ( 5 + 1 ) );
	if (j == jp) {
		j = j+1;
	}
	document.getElementById("testcont").innerHTML = MyTest[j];
	$("#testcont").animate({
	   opacity: 'show'
	 }, 1000);
	var delay = setTimeout("selectTest(" + j + ")",6000)
	
}