// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.
var SlideShowSpeed3 = 4200;
var CrossFadeDuration = 3;
var Picture3 = new Array(); // don't change this
Picture3[1]  = '_students/s10.JPG';
Picture3[2]  = '_students/s9.JPG';
Picture3[3]  = '_students/s22.JPG';
Picture3[4]  = '_students/s21.JPG';
Picture3[5]  = '_students/s20.JPG';
Picture3[6]  = '_students/s19.JPG';
Picture3[7]  = '_students/s18.JPG';
var tss3;
var iss3;
var jss3 = 1;
var pss3 = Picture3.length-1;
var preLoad3 = new Array();
for (iss3 = 1; iss3 < pss3+1; iss3++){
preLoad3[iss3] = new Image();
preLoad3[iss3].src = Picture3[iss3];}
function runSlideShow3(){
if (document.all){
document.images.PictureBox3.style.filter="blendTrans(duration=2)";
document.images.PictureBox3.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox3.filters.blendTrans.Apply();}
document.images.PictureBox3.src = preLoad3[jss3].src;
if (document.all) document.images.PictureBox3.filters.blendTrans.Play();
jss3 = jss3 + 1;
if (jss3 > (pss3)) jss3=1;
tss3 = setTimeout('runSlideShow3()', SlideShowSpeed3);
}