<!--

var myMsg = " ........................Von Ultimate Kennels....................Exclusively Czech, DDR, and Czech Border Patrol / Police Bloodlines";

myMsg = myMsg + "..........................................Dedicated to the preservation of the Working German Shepherd"; 

var i = 0;

function scrollMsg() {

	frontPart = myMsg.substring(i,myMsg.length);

	backPart = myMsg.substring(0,i);

	window.status = frontPart + backPart;

	if (i < myMsg.length)

		{

		i++;

		}

	else

		{

		i = 0;

		}

	setTimeout("scrollMsg()", 100);

	}

//-->