<!--
	var slideShowSpeed = 2500;
	var crossFadeDuration = 3;
	var Pic = new Array();

	Pic[0] = 'images/photo1.jpg'
	Pic[1] = 'images/photo2.jpg'
	Pic[2] = 'images/photo3.jpg'

	var t;
	var j = 0;
	var p = Pic.length;
	var preLoad = new Array();
	for (i = 0; i < p; i++) {
	preLoad[i] = new Image();
	preLoad[i].src = Pic[i];
}
	
	function runSlideShow() {
		if (document.all) {
			document.images.SlideShow.style.filter="blendTrans(duration=2)";
			document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
			document.images.SlideShow.filters.blendTrans.Apply();
		}
		document.images.SlideShow.src = preLoad[j].src;
		if (document.all) {
			document.images.SlideShow.filters.blendTrans.Play();
		}
		j = j + 1;
		if (j > (p - 1)) j = 0;
		t = setTimeout('runSlideShow()', slideShowSpeed);
	}

<!--
<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- modified by cns, 11_2001 -->

var slideShowSpeed1 = 2500;
var crossFadeDuration1 = 3;
var Pic1 = new Array();

Pic1[0] = 'images/photo4.jpg'
Pic1[1] = 'images/photonew1.jpg'
Pic1[2] = 'images/photonew2.jpg'

var t1;
var j1 = 0;
var p1 = Pic1.length;
	var preLoad1 = new Array();
		for (k = 0; k < p1; k++) {
		preLoad1[k] = new Image();
		preLoad1[k].src = Pic1[k];
}
	function runSlideS() {
		if (document.all) {
			document.images.SlideS.style.filter="blendTrans(duration=2)";
			document.images.SlideS.style.filter="blendTrans(duration=crossFadeDuration1)";
			document.images.SlideS.filters.blendTrans.Apply();
		}
		document.images.SlideS.src = preLoad1[j1].src;
		if (document.all) {
			document.images.SlideS.filters.blendTrans.Play();
		}
		j1 = j1 + 1;
		if (j1 > (p1 - 1)) j1 = 0;
		t1 = setTimeout('runSlideS()', slideShowSpeed1);
}
//-->

