Alldogs=new Array("dogs/ldog1.jpg","dogs/ldog2.jpg","dogs/ldog3.jpg","dogs/ldog4.jpg");

description=new Array("From Emily's last litter<br><br>","Jeane - now with my friend Kavi. A little brat.<br><br>","Puppy from Emily's last litter. Look at that face!<br><br>","Honey's last litter<br><br>");


//alert(Alldogs);
id=0;
function preloaddogs()
{

for(loadall=0; loadall<Alldogs.length; loadall++)
{

var LoadedImage=new Image();
LoadedImage.src=Alldogs[loadall];
}
}

function moveNext(){
if (id<Alldogs.length-1){
id++;
//alert(Alldogs+"\n"+Alldogs[id]);
document.getElementById("photograph").src=Alldogs[id];
document.getElementById("descriptionx").innerHTML="<div class='wwk1' style='margin-left:10px;margin-right:10px;line-height:18px;text-align:justify;margin-bottom:10px;'>"+description[id]+"</div>";



//document.getElementById("previous").src="images/previous.gif";
document.getElementById("prvcell").innerHTML='<a href="#wwk" onClick="moveBack();"><img src="images/previous.gif" width="75" height="15" border="0" id="previous" name="previous" alt=""></a>';

if (id==Alldogs.length-1){
	//document.getElementById("next").src="images/next_none.gif";
	document.getElementById("nextcell").innerHTML='<img src="images/next_none.gif" width="54" height="15" border="0" id="next" name="next" alt="">';
}
}

}//function moveNext

function moveBack(){
if (id>0){
id--;
document.getElementById("photograph").src=Alldogs[id];
document.getElementById("descriptionx").innerHTML="<div class='wwk1' style='margin-left:10px;margin-right:10px;line-height:18px;text-align:justify;margin-bottom:10px;'>"+description[id]+"</div>";


//document.getElementById("next").src="images/next.gif";
document.getElementById("nextcell").innerHTML='<a href="#wwk" onClick="moveNext();"><img src="images/next.gif" width="54" height="15" border="0" id="next" name="next" alt=""></a>';

if (id==0){
//	document.getElementById("previous").src="images/previous_none.gif";
document.getElementById("prvcell").innerHTML='<img src="images/previous_none.gif" width="75" height="15" border="0" id="previous" name="previous" alt="">';
}
}//if

}