// This Javascript determine the pictures to be used in the slideshow.  make sure the imgtotal in slide.js matches the total amount of pictures to be shown.  Each picture element requires two lines of code, the var image# line and the image#.src= line, make sure the # is the next largest integer available and matching for the two lines.
var image1 = new Image();
image1.src="http://www.kecprograms.com/img/kec1.png";
var image2 = new Image();
image2.src="http://www.kecprograms.com/img/kec2.png";
var image3 = new Image();
image3.src="http://www.kecprograms.com/img/kec3.png";
var image4 = new Image();
image4.src="http://www.kecprograms.com/img/kec4.png";
