//begin slideshow script

//begin slideshow script


var t1;var j1 = 0;var preLoad1 = new Array();

function preLoadImages1()
{preLoad1[0] = new Image();
preLoad1[0].src = "images/slyne15.jpg";
preLoad1[1] = new Image();preLoad1[1].src = "images/slyne16.jpg";
preLoad1[2] = new Image();preLoad1[2].src = "images/slyne17.jpg";
preLoad1[3] = new Image();preLoad1[3].src = "images/slyne8.jpg";
t1 = setInterval('runSlideShow1()',4000);
document.getElementById("slide1").style.display="none";
}

function runSlideShow1()
{if (document.all)
	 { document.images.img1.style.filter="blendTrans(duration=2)";
	document.images.img1.filters.blendTrans.Apply();
	}
document.images.img1.src = preLoad1[j1].src;
if (document.all) 
	{ document.images.img1.filters.blendTrans.Play();}
j1 = j1 + 1;if (j1 > (4 - 1)) j1 = 0;
}


var t2;var j2 = 0;var preLoad2 = new Array();

function preLoadImages2()
{preLoad2[0] = new Image();
preLoad2[0].src = "images/slyne20.jpg";
preLoad2[1] = new Image();preLoad2[1].src = "images/slyne14.jpg";
preLoad2[2] = new Image();preLoad2[2].src = "images/slyne19.jpg";
preLoad2[3] = new Image();preLoad2[3].src = "images/slyne3.jpg";
t2 = setInterval('runSlideShow2()',4000);
document.getElementById("slide2").style.display="none";
}

function runSlideShow2()
{if (document.all)
	 { document.images.img2.style.filter="blendTrans(duration=2)";
	document.images.img2.filters.blendTrans.Apply();
	}
document.images.img2.src = preLoad2[j2].src;
if (document.all) 
	{ document.images.img2.filters.blendTrans.Play();}
j2 = j2 + 1;if (j2 > (4 - 1)) j2 = 0;
}

var t3;var j3 = 0;var preLoad3 = new Array();

function preLoadImages3()
{preLoad3[0] = new Image();
preLoad3[0].src = "images/slyne24.jpg";
preLoad3[1] = new Image();preLoad3[1].src = "images/slyne21.jpg";
preLoad3[2] = new Image();preLoad3[2].src = "images/slyne22.jpg";
preLoad3[3] = new Image();preLoad3[3].src = "images/slyne4.jpg";
t3 = setInterval('runSlideShow3()',4000);
document.getElementById("slide3").style.display="none";
}

function runSlideShow3()
{if (document.all)
	 { document.images.img3.style.filter="blendTrans(duration=2)";
	document.images.img3.filters.blendTrans.Apply();
	}
document.images.img3.src = preLoad3[j3].src;
if (document.all) 
	{ document.images.img3.filters.blendTrans.Play();}
j3 = j3 + 1;if (j3 > (4 - 1)) j3 = 0;
}



