//Pets of the week starts here					

	var image1=new Image();
	image1.src="../pow/powdog.jpg";
	var image2=new Image();
	image2.src="../pow/powcat.jpg";

//variable that will increment through the images
	var step=1
	var curImage=1
	var slideTotal=2
	
function slideit(){
	//if browser does not support the image object, exit.
	if (!document.images)
		return
		document.images.slide.src=eval("image"+step+".src")
		curImage=step
	if (step<slideTotal)
		step++
	else
		step=1
	//call function "slideit()" every 4 seconds
	setTimeout("slideit()",4000)
}

function slidelink(){
	if (curImage==1)
//	window.location="#"
	window.location="../pow/pow.shtml#Dog"
	else if (curImage==2)
//	window.location="#"
	window.location="../pow/pow.shtml#Cat"
}