

//========================================================================================================
//========================================================================================================
//========================================================================================================

<!--
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
var slideShowSpeed2 = 5000;
var slideShowSpeed3 = 7000;
var slideShowSpeed4 = 9000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/top_09.jpg'
Pic[1] = 'images/top_09b.jpg'
Pic[2] = 'images/top_09c.jpg'

// do not edit anything below this line
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];
}

//set up for second slideshow
var Pic2 = new Array();

Pic2[0] = 'images/top_10.jpg'
Pic2[1] = 'images/top_10b.jpg'
Pic2[2] = 'images/top_10c.jpg'
Pic2[3] = 'images/top_10d.jpg'
var u;
var k = 0;
var q = Pic2.length;
var preLoad2 = new Array();
for (i = 0; i < q; i++) {
preLoad2[i] = new Image();
preLoad2[i].src = Pic2[i];
}

//set up for third slideshow
var Pic3 = new Array();

Pic3[0] = 'images/top_11.jpg'
Pic3[1] = 'images/top_11b.jpg'
Pic3[2] = 'images/top_11c.jpg'
Pic3[3] = 'images/top_11d.jpg'
var a;
var d = 0;
var g = Pic3.length;
var preLoad3 = new Array();
for (i = 0; i < g; i++) {
preLoad3[i] = new Image();
preLoad3[i].src = Pic3[i];
}
//set up for fourth slideshow
var Pic4 = new Array();

Pic4[0] = 'images/top_12.jpg'
Pic4[1] = 'images/top_12b.jpg'
Pic4[2] = 'images/top_12c.jpg'
Pic4[3] = 'images/top_12d.jpg'
var e;
var n = 0;
var s = Pic4.length;
var preLoad4 = new Array();
for (i = 0; i < s; i++) {
preLoad4[i] = new Image();
preLoad4[i].src = Pic4[i];
}

function runSlideShow() {
//slideshow one
	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);

}

function runSlideShow2(){
	//slideshow two
	if (document.all) {
		document.images.SlideShow2.style.filter="blendTrans(duration=2)";
		document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)";
		document.images.SlideShow2.filters.blendTrans.Apply();
	}
	document.images.SlideShow2.src = preLoad2[k].src;
	if (document.all) {
		document.images.SlideShow2.filters.blendTrans.Play();
	}
	k = k + 1;
	if (k > (q - 1)) k = 0;
	u = setTimeout('runSlideShow2()', slideShowSpeed2);


}
function runSlideShow3(){
	//slideshow three
	if (document.all) {
		document.images.SlideShow3.style.filter="blendTrans(duration=2)";
		document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)";
		document.images.SlideShow3.filters.blendTrans.Apply();
	}
	document.images.SlideShow3.src = preLoad3[d].src;
	if (document.all) {
		document.images.SlideShow3.filters.blendTrans.Play();
	}
	d = d + 1;
	if (d > (g - 1)) d = 0;
	a = setTimeout('runSlideShow3()', slideShowSpeed3);


}
function runSlideShow4(){
	//slideshow four
	if (document.all) {
		document.images.SlideShow4.style.filter="blendTrans(duration=2)";
		document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration)";
		document.images.SlideShow4.filters.blendTrans.Apply();
	}
	document.images.SlideShow4.src = preLoad4[n].src;
	if (document.all) {
		document.images.SlideShow4.filters.blendTrans.Play();
	}
	n = n + 1;
	if (n > (s - 1)) n = 0;
	e = setTimeout('runSlideShow4()', slideShowSpeed4);


}
//  End -->


