var timer = null



function pic1(){
document.slide.src = "newpics3/BRITISH.JPG";

cap.innerHTML="Best of Breed 2009 BRITISH SHORTHAIR";

timer=setTimeout("pic2()",5000);
}


function pic2(){
document.slide.src = "newpics3/HIGHLAND.JPG";

cap.innerHTML="Best of Breed 2009 HIGHLAND FOLD";

timer=setTimeout("pic3()",5000);
}

function pic3(){
document.slide.src = "newpics3/ORIENTAL.JPG";

cap.innerHTML="Best of Breed 2009 ORIENTAL";

timer=setTimeout("pic4()",5000);
}

function pic4(){
document.slide.src = "newpics3/RAGDOLL.JPG";

cap.innerHTML="Best of Breed 2009 RAGDOLL";

timer=setTimeout("pic1()",5000);
}







