function randomImage() {
	imageList = ["kabree_logo_cocker.gif", "kabree_logo_afghan.gif"];
	imagePrefix = "images/";
	i = Math.floor(Math.random() * imageList.length);
	imageURL = imagePrefix + imageList[i];
	document.write('<img src="'+imageURL+'" width="600" height="180">');
}
randomImage();