theimage = new Array();
// The dimensions of ALL the images should be the same or some of them may look stretched or reduced in Netscape 4.
// Format: theimage[...]=[image URL, link URL, name/description]
theimage[0]=["images/new-images/home-mid1_03.jpg", "#"];

theimage[1]=["images/new-images/home-mid2_03.jpg", "http://www.hbcutoday.net/index.php?option=com_content&view=article&id=52&Itemid=71"];

theimage[2]=["images/new-images/home-mid3_03.jpg", "http://en.wikipedia.org/wiki/File:Daytona_School_with_Bethune.jpg"];

theimage[3]=["images/new-images/home-mid4_03.jpg", "http://www.afrokidsonlinestore.com/site/924314/product/BLKP-2400"];

theimage[4]=["images/new-images/home-mid5_03.jpg", "african-heritage.htm"];

///// Plugin variables
playspeed=3000;// The playspeed determines the delay for the "Play" button in ms
linksperline=2; // For the text links
//#####
//key that holds where in the array currently are
i=0;
//###########################################
window.onload=function(){
	//preload images into browser
	preloadSlide();
	//set the first slide
	SetSlide(0);
	//autoplay
	PlaySlide();
}
//###########################################
function SetSlide(num) {
	//too big
	i=num%theimage.length;
	//too small
	if(i<0)i=theimage.length-1;
	//switch the image
	document.images.imgslide.src=theimage[i][0];
	//if they want name of current slide
//	document.getElementById('slidebox').innerHTML=theimage[i][2];
	//if they want current slide number and total
	//document.getElementById('slidecount').innerHTML= "Image "+(i+1)+" of "+theimage.length;
	document.getElementById('slidecount').innerHTML= (i+1)+"/"+theimage.length;
}
//###########################################
function PlaySlide() {
	if (!window.playing) {
		PlayingSlide(i+1);
		if(document.slideshow.play){
			document.slideshow.play.value="   Stop   ";
		}
	}
	else {
		playing=clearTimeout(playing);
		if(document.slideshow.play){
			document.slideshow.play.value="   Play   ";
		}
	}
	// if you have to change the image for the "playing" slide
	if(document.images.imgPlay){
		setTimeout('document.images.imgPlay.src="'+imgStop+'"',1);
		imgStop=document.images.imgPlay.src
	}
}
//###########################################
function PlayingSlide(num) {
	playing=setTimeout('PlayingSlide(i+1);SetSlide(i+1);', playspeed);
}
//###########################################
function preloadSlide() {
	for(k=0;k<theimage.length;k++) {
		theimage[k][0]=new Image().src=theimage[k][0];
	}
}