var slideShowSpeed = 3000;

var crossFadeDuration = 4;
var Pic = new Array();
Pic[0] = 'Images/Noels-27.jpg'
Pic[1] = 'Images/Noels.jpg'
Pic[2] = 'Images/Noels-25.jpg'
Pic[3] = 'Images/Noels-25.jpg'
Pic[4] = 'Images/Noels-25.jpg'
Pic[5] = 'Images/Noels-27.jpg'

Pic[6] = 'Images/Noels.jpg'
Pic[7] = 'Images/Noels-08.jpg'
Pic[8] = 'Images/Noels-08.jpg'
Pic[9] = 'Images/Noels-15.jpg'
Pic[10] = 'Images/Noels-15.jpg'
Pic[11] = 'Images/Noels-15.jpg'

Pic[12] = 'Images/Noels-10.jpg'
Pic[13] = 'Images/Noels-10.jpg'
Pic[14] = 'Images/Noels.jpg'
Pic[15] = 'Images/Noels-18.jpg'
Pic[16] = 'Images/Noels-18.jpg'
Pic[17] = 'Images/Noels-18.jpg'

Pic[18] = 'Images/Noels-19.jpg'
Pic[19] = 'Images/Noels-19.jpg'
Pic[20] = 'Images/Noels-19.jpg'
Pic[21] = 'Images/Noels.jpg'
Pic[22] = 'Images/Noels-12.jpg'
Pic[23] = 'Images/Noels-12.jpg'

Pic[24] = 'Images/Noels-22.jpg'
Pic[25] = 'Images/Noels-28.jpg'
Pic[26] = 'Images/Noels-28.jpg'
Pic[27] = 'Images/Noels-28.jpg'
Pic[28] = 'Images/Noels.jpg'
Pic[29] = 'Images/Noels-22.jpg'

Pic[30] = 'Images/Noels-21.jpg'
Pic[31] = 'Images/Noels-21.jpg'
Pic[32] = 'Images/Noels-26.jpg'
Pic[33] = 'Images/Noels-26.jpg'
Pic[34] = 'Images/Noels-26.jpg'
Pic[35] = 'Images/Noels.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.SlideShow2.style.filter="blendTrans(duration=2)";
	document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)";
	document.images.SlideShow2.filters.blendTrans.Apply ();
	document.images.SlideShow3.style.filter="blendTrans(duration=2)";
	document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)";
	document.images.SlideShow3.filters.blendTrans.Apply ();
	document.images.SlideShow4.style.filter="blendTrans(duration=2)";
	document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration)";
	document.images.SlideShow4.filters.blendTrans.Apply ();
	document.images.SlideShow5.style.filter="blendTrans(duration=2)";
	document.images.SlideShow5.style.filter="blendTrans(duration=crossFadeDuration)";
	document.images.SlideShow5.filters.blendTrans.Apply ();
	document.images.SlideShow6.style.filter="blendTrans(duration=2)";
	document.images.SlideShow6.style.filter="blendTrans(duration=crossFadeDuration)";
	document.images.SlideShow6.filters.blendTrans.Apply ();
	}
	document.images.SlideShow.src = preLoad[j].src;
	document.images.SlideShow2.src = preLoad[j+6].src;
	document.images.SlideShow3.src = preLoad[j+12].src;
	document.images.SlideShow4.src = preLoad[j+18].src;
	document.images.SlideShow5.src = preLoad[j+24].src;
	document.images.SlideShow6.src = preLoad[j+30].src;
	if (document.all) {
		document.images.SlideShow.filters.blendTrans.Play( );
		document.images.SlideShow2.filters.blendTrans.Play( );
		document.images.SlideShow3.filters.blendTrans.Play( );
		document.images.SlideShow4.filters.blendTrans.Play( );
		document.images.SlideShow5.filters.blendTrans.Play( );
		document.images.SlideShow6.filters.blendTrans.Play( );
	}
	j = j + 1;
	if (j > (6 - 1)) j = 0;
	t = setTimeout('runSlideShow()', slideShowSpeed);
}