//configure the paths of the images, plus corresponding target links
slideshowimages("machu100x100.jpg","quang100x100.jpg","greece100x100.jpg", "ramses100x100.jpg","orang100x100.jpg","medcity100x100.jpg","JapaneseWomen.jpg", "egyptian100x100.jpg","tut100x100.jpg","kiln100x100.jpg","galelio100x100.jpg", "columns100x100.jpg","cancun100x100.jpg","church100x100.jpg","dig100x100.jpg", "diver100x100.jpg","football100x100.jpg","icon100x100.jpg","seriation100x100.jpg","peubleo100x100.jpg", "zhou100x100.jpg","emuseum100x100.jpg","wailingwall100x100.jpg","world100x100.jpg", "walkingskeleton.gif","kinship100x100.jpg","meerkat100x100.jpg", "plant100x100.jpg","rockart100x100.jpg","spanish100x100.jpg");

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=4000;
var firstimage=0;
function slideit(){
	if (!document.images)
		return;
	document.images.slide1.src=slideimages[firstimage].src;
	document.images.slide2.src=slideimages[firstimage+1].src;
	document.images.slide3.src=slideimages[firstimage+3].src;
	document.images.slide4.src=slideimages[firstimage+6].src;
	document.images.slide5.src=slideimages[firstimage+8].src;
	document.images.slide6.src=slideimages[firstimage+10].src;

	if (firstimage+11<slideimages.length)
		firstimage++;
	else
		firstimage=0;
	setTimeout("slideit()",slideshowspeed);
}
slideit();
