<!-- Begin
var slideShowSpeed = 3000;
var crossFadeDuration = 8000;
var Pic = new Array();

Pic[0] = 'images/1.gif'
Pic[1] = 'images/2.gif'
Pic[2] = 'images/3.gif'
Pic[3] = 'images/4.gif'
Pic[4] = 'images/5.gif'
Pic[5] = 'images/6.gif'
Pic[6] = 'images/7.gif'
Pic[7] = 'images/8.gif'
Pic[8] = 'images/9.gif'
Pic[9] = 'images/10.gif'
Pic[10] = 'images/11.gif'
Pic[11] = 'images/12.gif'
Pic[12] = 'images/13.gif'
Pic[13] = 'images/14.gif'
Pic[14] = 'images/15.gif'
Pic[15] = 'images/16.gif'
Pic[16] = 'images/17.gif'
Pic[17] = 'images/18.gif'
Pic[18] = 'images/19.gif'
Pic[19] = 'images/20.gif'
Pic[20] = 'images/21.gif'
Pic[21] = 'images/22.gif'
Pic[22] = 'images/23.gif'
Pic[23] = 'images/24.gif'
Pic[24] = 'images/25.gif'
Pic[25] = 'images/26.gif'
Pic[26] = 'images/27.gif'
Pic[27] = 'images/28.gif'
Pic[28] = 'images/29.gif'
Pic[29] = 'images/30.gif'
Pic[30] = 'images/31.gif'
Pic[31] = 'images/32.gif'
Pic[32] = 'images/33.gif'
Pic[33] = 'images/34.gif'
Pic[34] = 'images/35.gif'
Pic[35] = 'images/36.gif'
Pic[36] = 'images/37.gif'
Pic[37] = 'images/38.gif'
Pic[38] = 'images/39.gif'
Pic[39] = 'images/40.gif'
Pic[40] = 'images/41.gif'
Pic[41] = 'images/42.gif'
Pic[42] = 'images/43.gif'
Pic[43] = 'images/44.gif'
Pic[44] = 'images/45.gif'
Pic[45] = 'images/46.gif'
Pic[46] = 'images/47.gif'
Pic[47] = 'images/48.gif'
Pic[48] = 'images/49.gif'
Pic[49] = 'images/50.gif'


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="revealTrans(duration=2)";
		document.images.SlideShow.style.filter="revealTrans(duration=2,transition=50)";
		document.images.SlideShow.filters.revealTrans.Apply();
	}
	document.images.SlideShow.src = preLoad[j].src;
	if (document.all)
	{
		document.images.SlideShow.filters.revealTrans.Play();
	}
	j = j + 1;
	if (j > (p - 1)) j = 0;
		t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 