// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.
var SlideShowSpeed2 = 3700;
var CrossFadeDuration = 3;
var Picture2 = new Array(); // don't change this
Picture2[1]  = '_students/s11.JPG';
Picture2[2]  = '_students/s12.JPG';
Picture2[3]  = '_students/s13.JPG';
Picture2[4]  = '_students/s14.JPG';
Picture2[5]  = '_students/s15.JPG';
Picture2[6]  = '_students/s16.JPG';
Picture2[7]  = '_students/s17.JPG';
var tss2;
var iss2;
var jss2 = 1;
var pss2 = Picture2.length-1;
var preLoad2 = new Array();
for (iss2 = 1; iss2 < pss2+1; iss2++){
preLoad2[iss2] = new Image();
preLoad2[iss2].src = Picture2[iss2];}
function runSlideShow2(){
if (document.all){
document.images.PictureBox2.style.filter="blendTrans(duration=2)";
document.images.PictureBox2.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox2.filters.blendTrans.Apply();}
document.images.PictureBox2.src = preLoad2[jss2].src;
if (document.all) document.images.PictureBox2.filters.blendTrans.Play();
jss2 = jss2 + 1;
if (jss2 > (pss2)) jss2=1;
tss2 = setTimeout('runSlideShow2()', SlideShowSpeed2);
}
