// JavaScript Document<script>
<!--
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pict = new Array();
// to add more images, just continue
// the pattern, adding to the array below
 
//Pict[0] = 'GoldSponsors/Gold-Sponsors2.jpg'
//Pict[1] = 'GoldSponsors/Gold-Sponsors3.jpg'
//Pict[2] = 'GoldSponsors/Gold-Sponsors4.jpg'
//Pict[3] = 'GoldSponsors/Gold-Sponsors5.jpg'
//Pict[4] = 'GoldSponsors/Gold-Sponsors6.jpg'
//Pict[5] = 'GoldSponsors/Gold-Sponsors7.jpg'
//Pict[6] = 'GoldSponsors/Gold-Sponsors8.jpg'
//Pict[7] = 'GoldSponsors/Gold-Sponsors9.jpg'
//Pict[8] = 'GoldSponsors/Gold-Sponsors10.jpg'
//Pict[9] = 'GoldSponsors/Gold-Sponsors11.jpg'
//Pict[10] = 'GoldSponsors/Gold-Sponsors12.jpg'
//Pict[11] = 'GoldSponsors/Gold-Sponsors13.jpg'

 
// do not edit anything below this line
var o;
var b = 0;
var s = Pict.length;
var preLoadt = new Array();
for (h = 0; h < s; h++) {
preLoadt[h] = new Image();
preLoadt[h].src = Pict[h];
}
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 = preLoadt[b].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
b = b + 1;
if (b > (s - 1)) b = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
 
//  End -->


