
//variable that will increment through the images
// Start with a random one
var total=11;
var step=Math.floor(Math.random()*total) + 1;

function slideit(){
	//if browser does not support the image object, exit.
	if (!document.images)
		return;
	
	document.images.slide.src=eval("s"+step+".src");
	
	if (step < total)
		step++;
	else
		step=1;
		
	//call function "slideit()" every 3 seconds
	setTimeout("slideit()",3000);
}

var s1 = new Image();
s1.src =  "images_home/slideshow/buildingthewall.jpg";

var s2 = new Image();
s2.src =  "images_home/slideshow/carryingbasket.jpg";

var s3 = new Image();
s3.src =  "images_home/slideshow/chapati.jpg";

var s4 = new Image();
s4.src =  "images_home/slideshow/haulingdirt.jpg";

var s5 = new Image();
s5.src =  "images_home/slideshow/Inca1.jpg";

var s6 = new Image();
s6.src =  "images_home/slideshow/India1.jpg";

var s7 = new Image();
s7.src =  "images_home/slideshow/letmeyou.jpg";

var s8 = new Image();
s8.src =  "images_home/slideshow/Malikid.jpg";

var s9 = new Image();
s9.src =  "images_home/slideshow/Sacredvalley1.jpg";

var s10 = new Image();
s10.src =  "images_home/slideshow/shovelwTammy.jpg";

var s11 = new Image();
s11.src =  "images_home/slideshow/weavingkid.jpg";

