// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.
var SlideShowSpeed = 3200;
var CrossFadeDuration = 3;
var Picture = new Array(); // don't change this
Picture[1]  = '_students/s1.JPG';
Picture[2]  = '_students/s2.JPG';
Picture[3]  = '_students/s3.JPG';
Picture[4]  = '_students/s4.JPG';
Picture[5]  = '_students/s5.JPG';
Picture[6]  = '_students/s6.JPG';
Picture[7]  = '_students/s7.JPG';
Picture[8]  = '_students/s8.JPG';
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}
function runSlideShow1(){
if (document.all){
document.images.PictureBox1.style.filter="blendTrans(duration=2)";
document.images.PictureBox1.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox1.filters.blendTrans.Apply();}
document.images.PictureBox1.src = preLoad[jss].src;
if (document.all) document.images.PictureBox1.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow1()', SlideShowSpeed);
}