	 var slideShowSpeed = 6000;
	 var crossFadeDuration = 6;
	 var Pic = new Array();
	 
	 Pic[0] = '../templates/firstweb/1.jpg'
	 Pic[1] = '../templates/firstweb/2.jpg'
	 Pic[2] = '../templates/firstweb/3.jpg'
	 Pic[3] = '../templates/firstweb/4.jpg'
	 Pic[4] = '../templates/firstweb/4.jpg'
	 Pic[5] = '../templates/firstweb/6.jpg'
	 Pic[6] = '../templates/firstweb/7.jpg'
	 Pic[7] = '../templates/firstweb/8.jpg'
	 Pic[8] = '../templates/firstweb/9.jpg'
	 Pic[9] = '../templates/firstweb/10.jpg'
	 Pic[10] = '../templates/firstweb/11.jpg'
	 Pic[11] = '../templates/firstweb/12.jpg'
	 Pic[12] = '../templates/firstweb/13.jpg'
	 Pic[13] = '../templates/firstweb/14.jpg'
	 Pic[14] = '../templates/firstweb/15.jpg'
	 Pic[15] = '../templates/firstweb/16.jpg'
	 Pic[16] = '../templates/firstweb/17.jpg'
	 Pic[17] = '../templates/firstweb/18.jpg'
	 Pic[18] = '../templates/firstweb/19.jpg'
	 Pic[19] = '../templates/firstweb/20.jpg'
	   
	 var t1;
	 var j1 = 0;
	 var p1 = Pic.length;
	 var preLoad = new Array();
	 for (i1 = 0; i1 < p1; i1++) {
	 preLoad[i1] = new Image();
	 preLoad[i1].src = Pic[i1];
	 
	 }
	 function runSlideShow() {
	 if (document.all) {
	 document.images.SlideShow.style.filter="blendTrans(duration=1)";
	 document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
	 document.images.SlideShow.filters.blendTrans.Apply();
	 }
	 document.images.SlideShow.src = preLoad[j1].src;
	 document.images.SlideShow.alt = preLoad[j1].alt;
	 if (document.all) {
	 document.images.SlideShow.filters.blendTrans.Play();
	 }
	 j1 = j1 + 1;
	 if (j1 > (p1 - 1)) j1 = 0;
	 t = setTimeout('runSlideShow()', slideShowSpeed);
	 }
	 
	 
	 
	 
	 
