var images = new Array();
var numberOfImages = 0;
var currentImage = 0;
						
// jQuery DOM Ready (document loaded)
$(function()
{
	$.ajax({
		url: "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/adoptchildren.asp",
		cache: false,
		success: function(data){
			loadImages(data);
		}
	});			
	setInterval("nextImage()", 3000);	
});

function loadImages(data){
	$('img[src*="hoto."]', data).each(function(){
		images.push(this.src);
		numberOfImages += 1;
	});
}
	
function nextImage(){
	currentImage = (currentImage + 1) % numberOfImages;
	document.slide.src = images[currentImage];
}


/* OLD CODE BELOW

gSlideshowInterval = 13;
gNumberOfImages = 13;

gImages = new Array(gNumberOfImages);
gImages[0] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image2t.gif";
gImages[1] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image3t.gif"; 
gImages[2] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image5t.gif";
gImages[3] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image7t.gif";
gImages[4] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image8t.gif"; 
gImages[5] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image9t.gif"; 
gImages[6] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image10t.gif"; 
gImages[7] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image12t.gif"; 
gImages[8] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image13t.gif";
gImages[9] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image14t.gif"; 
gImages[10] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image11t.gif"; 
gImages[11] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image1t.gif";
gImages[12] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image4t.gif";
gImages[13] = "http://www.co.arapahoe.co.us/Departments/HS/ChildProtectionServices/images/image6t.gif";


function canManipulateImages() {
	if (document.images)
		return true;
	else
		return false;
}
function loadSlide(imageURL) {
	if (gImageCapableBrowser) {
		document.slide.src = imageURL;
		return false;
	}
	else {
		return true;
	}
}
function nextSlide() {
	gCurrentImage = (gCurrentImage + 1) % gNumberOfImages;
	loadSlide(gImages[gCurrentImage]);
}
gImageCapableBrowser = canManipulateImages();
gCurrentImage = 0;
setInterval("nextSlide()",gSlideshowInterval * 300);
*/
