﻿	picc = new Array;
	
	picc[0]="resources/home_sshow/img.JPG";
	picc[1]="resources/home_sshow/img1.JPG";
	picc[2]="resources/home_sshow/img2.JPG";
	picc[3]="resources/home_sshow/img3.JPG";
	picc[4]="resources/home_sshow/img4.JPG";
	picc[5]="resources/home_sshow/img5.JPG";
	picc[6]="resources/home_sshow/img6.JPG";
	picc[7]="resources/home_sshow/img7.JPG";
	picc[8]="resources/home_sshow/img8.JPG";
	picc[9]="resources/home_sshow/img9.JPG";
	picc[10]="resources/home_sshow/img10.JPG";
	picc[11]="resources/home_sshow/img11.JPG";
	picc[12]="resources/home_sshow/img12.JPG";
	picc[13]="resources/home_sshow/img13.JPG";
	picc[14]="resources/home_sshow/img14.JPG";
	picc[15]="resources/home_sshow/img15.JPG";
	picc[16]="resources/home_sshow/img16.JPG";
	picc[17]="resources/home_sshow/img17.JPG";
	picc[18]="resources/home_sshow/img18.JPG";
	picc[19]="resources/home_sshow/img19.JPG";
	picc[20]="resources/home_sshow/img20.JPG";
	picc[21]="resources/home_sshow/img21.JPG";
	picc[22]="resources/home_sshow/img22.JPG";
	picc[23]="resources/home_sshow/img23.JPG";
	picc[24]="resources/home_sshow/img24.JPG";
	picc[25]="resources/home_sshow/img25.JPG";


	var t = 0;
	
	function slideshow(){
	setInterval("swap()", 5000);
	}
	
	function swap(){
	document.images.pic.src = picc[t];
	t = t + 1;
	if (t > (picc.length - 1)) {t = 0}
	}