/*
direction: slider function created so page does not refresh. 
	to add more images, image files names need to start with image(next number).jpg and placed in the images directory.
	the var "imgCT" needs to be changed as to how many images are being used for the slider.
author: msallave
date: 08/20/2002
;-)
*/
		
		
		function newSlide(direction,section) {
			if (document.images) { 
				thisImg = thisImg + direction;
			if (thisImg<1) { 
				thisImg = imgCt;
				}
			if(thisImg > imgCt) {
				thisImg = 1; 
				} 
			document.slider.src = "images/"+ section + thisImg + ".jpg";
			}
		 }
		 
