var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1931{';
wsContentVar += '        width:467px;';
wsContentVar += '        height:224px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-1931-content-with-border{';
wsContentVar += '   height:224px;';
wsContentVar += '   width:467px;';
wsContentVar += '}';
wsStyleVar.setAttribute('type', 'text/css');
if (wsStyleVar.styleSheet)
{   // IE
    wsStyleVar.styleSheet.cssText = wsContentVar;
}
else
{                // the world
    var tt1 = document.createTextNode(wsContentVar);
    wsStyleVar.appendChild(tt1);
}
var wsHeadVar = document.getElementsByTagName('head')[0];
wsHeadVar.appendChild(wsStyleVar);
document.write("");

var fadeimages1931=new Array()

fadeimages1931 [0]=["https://illinois.edu/lb/files/2009/02/25/8518.jpg", "", "", ""];

fadeimages1931 [1]=["https://illinois.edu/lb/files/2009/02/25/8514.jpg", "", "", ""];

fadeimages1931 [2]=["https://illinois.edu/lb/files/2009/02/25/8517.jpg", "", "", ""];

fadeimages1931 [3]=["https://illinois.edu/lb/files/2009/02/25/8515.jpg", "", "", ""];

fadeimages1931 [4]=["https://illinois.edu/lb/files/2009/02/25/8513.jpg", "", "", ""];

fadeimages1931 [5]=["https://illinois.edu/lb/files/2009/02/25/8519.jpg", "", "", ""];

fadeimages1931 [6]=["https://illinois.edu/lb/files/2009/02/25/8520.jpg", "", "", ""];
var fadebgcolor1931="white"

////NO need to edit beyond here/////////////

var fadearray1931=new Array() //array to cache fadeshow instances
var fadeclear1931=new Array() //array to cache corresponding clearinterval pointers

var dom1931=(document.getElementById) //modern dom browsers
var iebrowser1931=document.all

function fadeshow1931(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1931=pause
this.mouseovercheck1931=0
this.delay1931=delay
this.degree1931=10 //initial opacity degree (10%)
this.curimageindex1931=0
this.nextimageindex1931=1
fadearray1931[fadearray1931.length]=this
this.slideshowid1931=fadearray1931.length-1
this.canvasbase1931="canvas1931"+this.slideshowid1931
this.curcanvas1931=this.canvasbase1931+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1931=theimages
this.imageborder1931=parseInt(borderwidth)
this.postimages1931=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1931[p]=new Image()
this.postimages1931[p].src=theimages[p][0]
this.postimages1931[p].alt=theimages[p][3]
}

var fadewidth1931=fadewidth+this.imageborder1931*2
var fadeheight1931=fadeheight+this.imageborder1931*2

if (iebrowser1931&&dom1931||dom1931) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1931'+this.slideshowid1931+'" class="slide-show-wrapper-1931" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1931+'_0" style="position:absolute;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor1931+'"></div><div id="'+this.canvasbase1931+'_1" style="position:absolute;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor1931+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1931-content-with-border" name="defaultslide1931'+this.slideshowid1931+'" src="'+this.postimages1931[0].src+'" alt="'+this.postimages1931[0].alt+'"></div>')

if (iebrowser1931&&dom1931||dom1931) //if IE5+ or modern browsers such as Firefox
this.startit1931()
else{
this.curimageindex1931++
setInterval("fadearray1931["+this.slideshowid1931+"].rotateimage1931()", this.delay1931)
}
}





function fadepic1931(obj1931){
if (obj1931.degree1931<100){
obj1931.degree1931+=10
if (obj1931.tempobj1931.filters&&obj1931.tempobj1931.filters[0]){
if (typeof obj1931.tempobj1931.filters[0].opacity=="number") //if IE6+
obj1931.tempobj1931.filters[0].opacity=obj1931.degree1931
else //else if IE5.5-
obj1931.tempobj1931.style.filter="alpha(opacity="+obj1931.degree1931+")"
}
else if (obj1931.tempobj1931.style.MozOpacity)
obj1931.tempobj1931.style.MozOpacity=obj1931.degree1931/101
else if (obj1931.tempobj1931.style.KhtmlOpacity)
obj1931.tempobj1931.style.KhtmlOpacity=obj1931.degree1931/100
else if (obj1931.tempobj1931.style.opacity&&!obj1931.tempobj1931.filters)
obj1931.tempobj1931.style.opacity=obj1931.degree1931/101
}
else{
clearInterval(fadeclear1931[obj1931.slideshowid1931])
obj1931.nextcanvas1931=(obj1931.curcanvas1931==obj1931.canvasbase1931+"_0")? obj1931.canvasbase1931+"_0" : obj1931.canvasbase1931+"_1"
obj1931.tempobj1931=iebrowser1931? iebrowser1931[obj1931.nextcanvas1931] : document.getElementById(obj1931.nextcanvas1931)
obj1931.populateslide1931(obj1931.tempobj1931, obj1931.nextimageindex1931)
obj1931.nextimageindex1931=(obj1931.nextimageindex1931<obj1931.postimages1931.length-1)? obj1931.nextimageindex1931+1 : 0
setTimeout("fadearray1931["+obj1931.slideshowid1931+"].rotateimage1931()", obj1931.delay1931)
}
}


fadeshow1931.prototype.populateslide1931=function(picobj1931, picindex1931){
var slideHTML1931=""
if (this.theimages1931[picindex1931][1]!="") //if associated link exists for image
slideHTML1931='<a href="'+this.theimages1931[picindex1931][1]+'" target="'+this.theimages1931[picindex1931][2]+'">'
slideHTML1931+='<img class="edu-il-ws-1931-content-with-border" src="'+this.postimages1931[picindex1931].src+'" alt="'+this.postimages1931[picindex1931].alt+'" border="'+this.imageborder1931+'px">'
if (this.theimages1931[picindex1931][1]!="") //if associated link exists for image
slideHTML1931+='</a>'
picobj1931.innerHTML=slideHTML1931
}


fadeshow1931.prototype.rotateimage1931=function(){
if (this.pausecheck1931==1) //if pause onMouseover enabled, cache object
var cacheobj1931=this
if (this.mouseovercheck1931==1)
setTimeout(function(){cacheobj1931.rotateimage1931()}, 100)
else if (iebrowser1931&&dom1931||dom1931){
this.resetit1931()
var crossobj1931=this.tempobj1931=iebrowser1931? iebrowser1931[this.curcanvas1931] : document.getElementById(this.curcanvas1931)
crossobj1931.style.zIndex++
fadeclear1931[this.slideshowid1931]=setInterval("fadepic1931(fadearray1931["+this.slideshowid1931+"])",50)
this.curcanvas1931=(this.curcanvas1931==this.canvasbase1931+"_0")? this.canvasbase1931+"_1" : this.canvasbase1931+"_0"
}
else{
var ns4imgobj1931=document.images['defaultslide1931'+this.slideshowid1931]
ns4imgobj1931.src=this.postimages1931[this.curimageindex1931].src
ms4imgobj1931.alt=this.postimages1931[this.curimageindex1931].alt
}
this.curimageindex1931=(this.curimageindex1931<this.postimages1931.length-1)? this.curimageindex1931+1 : 0
}

fadeshow1931.prototype.resetit1931=function(){
this.degree1931=10
var crossobj1931=iebrowser1931? iebrowser1931[this.curcanvas1931] : document.getElementById(this.curcanvas1931)
if (crossobj1931.filters&&crossobj1931.filters[0]){
if (typeof crossobj1931.filters[0].opacity=="number") //if IE6+
crossobj1931.filters(0).opacity=this.degree1931
else //else if IE5.5-
crossobj1931.style.filter="alpha(opacity="+this.degree1931+")"
}
else if (crossobj1931.style.MozOpacity)
crossobj1931.style.MozOpacity=this.degree1931/101
else if (crossobj1931.style.KhtmlOpacity)
crossobj1931.style.KhtmlOpacity=this.degree1931/100
else if (crossobj1931.style.opacity&&!crossobj1931.filters)
crossobj1931.style.opacity=this.degree1931/101
}


fadeshow1931.prototype.startit1931=function(){
var crossobj1931=iebrowser1931? iebrowser1931[this.curcanvas1931] : document.getElementById(this.curcanvas1931)
this.populateslide1931(crossobj1931, this.curimageindex1931)
if (this.pausecheck1931==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1931=this
var crossobjcontainer1931=iebrowser1931? iebrowser1931["master1931"+this.slideshowid1931] : document.getElementById("master1931"+this.slideshowid1931)
crossobjcontainer1931.onmouseover=function(){cacheobj1931.mouseovercheck1931=1}
crossobjcontainer1931.onmouseout=function(){cacheobj1931.mouseovercheck1931=0}
}
this.rotateimage1931()
}
var delay = 3 * 1000;
new fadeshow1931 (fadeimages1931, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

