var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1679{';
wsContentVar += '        margin: 0px;';
wsContentVar += 'padding: 0px;';
wsContentVar += 'border: 4px solid #CCCCCC;';
wsContentVar += 'height: 332px;';
wsContentVar += 'width: 592px;';
wsContentVar += 'margin: 0px 0px 20px 0px';
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 fadeimages1679=new Array()

fadeimages1679 [0]=["https://illinois.edu/lb/files/2008/11/03/6417.jpg", "", "", ""];

fadeimages1679 [1]=["https://illinois.edu/lb/files/2008/11/03/6414.jpg", "", "", ""];

fadeimages1679 [2]=["https://illinois.edu/lb/files/2008/11/03/6415.jpg", "", "", ""];

fadeimages1679 [3]=["https://illinois.edu/lb/files/2008/11/03/6416.jpg", "", "", ""];
var fadebgcolor1679="white"

////NO need to edit beyond here/////////////

var fadearray1679=new Array() //array to cache fadeshow instances
var fadeclear1679=new Array() //array to cache corresponding clearinterval pointers

var dom1679=(document.getElementById) //modern dom browsers
var iebrowser1679=document.all

function fadeshow1679(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1679=pause
this.mouseovercheck1679=0
this.delay1679=delay
this.degree1679=10 //initial opacity degree (10%)
this.curimageindex1679=0
this.nextimageindex1679=1
fadearray1679[fadearray1679.length]=this
this.slideshowid1679=fadearray1679.length-1
this.canvasbase1679="canvas1679"+this.slideshowid1679
this.curcanvas1679=this.canvasbase1679+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1679=theimages
this.imageborder1679=parseInt(borderwidth)
this.postimages1679=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1679[p]=new Image()
this.postimages1679[p].src=theimages[p][0]
this.postimages1679[p].alt=theimages[p][3]
}

var fadewidth1679=fadewidth+this.imageborder1679*2
var fadeheight1679=fadeheight+this.imageborder1679*2

if (iebrowser1679&&dom1679||dom1679) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1679'+this.slideshowid1679+'" class="slide-show-wrapper-1679" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1679+'_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:'+fadebgcolor1679+'"></div><div id="'+this.canvasbase1679+'_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:'+fadebgcolor1679+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1679-content-with-border" name="defaultslide1679'+this.slideshowid1679+'" src="'+this.postimages1679[0].src+'" alt="'+this.postimages1679[0].alt+'"></div>')

if (iebrowser1679&&dom1679||dom1679) //if IE5+ or modern browsers such as Firefox
this.startit1679()
else{
this.curimageindex1679++
setInterval("fadearray1679["+this.slideshowid1679+"].rotateimage1679()", this.delay1679)
}
}





function fadepic1679(obj1679){
if (obj1679.degree1679<100){
obj1679.degree1679+=10
if (obj1679.tempobj1679.filters&&obj1679.tempobj1679.filters[0]){
if (typeof obj1679.tempobj1679.filters[0].opacity=="number") //if IE6+
obj1679.tempobj1679.filters[0].opacity=obj1679.degree1679
else //else if IE5.5-
obj1679.tempobj1679.style.filter="alpha(opacity="+obj1679.degree1679+")"
}
else if (obj1679.tempobj1679.style.MozOpacity)
obj1679.tempobj1679.style.MozOpacity=obj1679.degree1679/101
else if (obj1679.tempobj1679.style.KhtmlOpacity)
obj1679.tempobj1679.style.KhtmlOpacity=obj1679.degree1679/100
else if (obj1679.tempobj1679.style.opacity&&!obj1679.tempobj1679.filters)
obj1679.tempobj1679.style.opacity=obj1679.degree1679/101
}
else{
clearInterval(fadeclear1679[obj1679.slideshowid1679])
obj1679.nextcanvas1679=(obj1679.curcanvas1679==obj1679.canvasbase1679+"_0")? obj1679.canvasbase1679+"_0" : obj1679.canvasbase1679+"_1"
obj1679.tempobj1679=iebrowser1679? iebrowser1679[obj1679.nextcanvas1679] : document.getElementById(obj1679.nextcanvas1679)
obj1679.populateslide1679(obj1679.tempobj1679, obj1679.nextimageindex1679)
obj1679.nextimageindex1679=(obj1679.nextimageindex1679<obj1679.postimages1679.length-1)? obj1679.nextimageindex1679+1 : 0
setTimeout("fadearray1679["+obj1679.slideshowid1679+"].rotateimage1679()", obj1679.delay1679)
}
}


fadeshow1679.prototype.populateslide1679=function(picobj1679, picindex1679){
var slideHTML1679=""
if (this.theimages1679[picindex1679][1]!="") //if associated link exists for image
slideHTML1679='<a href="'+this.theimages1679[picindex1679][1]+'" target="'+this.theimages1679[picindex1679][2]+'">'
slideHTML1679+='<img class="edu-il-ws-1679-content-with-border" src="'+this.postimages1679[picindex1679].src+'" alt="'+this.postimages1679[picindex1679].alt+'" border="'+this.imageborder1679+'px">'
if (this.theimages1679[picindex1679][1]!="") //if associated link exists for image
slideHTML1679+='</a>'
picobj1679.innerHTML=slideHTML1679
}


fadeshow1679.prototype.rotateimage1679=function(){
if (this.pausecheck1679==1) //if pause onMouseover enabled, cache object
var cacheobj1679=this
if (this.mouseovercheck1679==1)
setTimeout(function(){cacheobj1679.rotateimage1679()}, 100)
else if (iebrowser1679&&dom1679||dom1679){
this.resetit1679()
var crossobj1679=this.tempobj1679=iebrowser1679? iebrowser1679[this.curcanvas1679] : document.getElementById(this.curcanvas1679)
crossobj1679.style.zIndex++
fadeclear1679[this.slideshowid1679]=setInterval("fadepic1679(fadearray1679["+this.slideshowid1679+"])",50)
this.curcanvas1679=(this.curcanvas1679==this.canvasbase1679+"_0")? this.canvasbase1679+"_1" : this.canvasbase1679+"_0"
}
else{
var ns4imgobj1679=document.images['defaultslide1679'+this.slideshowid1679]
ns4imgobj1679.src=this.postimages1679[this.curimageindex1679].src
ms4imgobj1679.alt=this.postimages1679[this.curimageindex1679].alt
}
this.curimageindex1679=(this.curimageindex1679<this.postimages1679.length-1)? this.curimageindex1679+1 : 0
}

fadeshow1679.prototype.resetit1679=function(){
this.degree1679=10
var crossobj1679=iebrowser1679? iebrowser1679[this.curcanvas1679] : document.getElementById(this.curcanvas1679)
if (crossobj1679.filters&&crossobj1679.filters[0]){
if (typeof crossobj1679.filters[0].opacity=="number") //if IE6+
crossobj1679.filters(0).opacity=this.degree1679
else //else if IE5.5-
crossobj1679.style.filter="alpha(opacity="+this.degree1679+")"
}
else if (crossobj1679.style.MozOpacity)
crossobj1679.style.MozOpacity=this.degree1679/101
else if (crossobj1679.style.KhtmlOpacity)
crossobj1679.style.KhtmlOpacity=this.degree1679/100
else if (crossobj1679.style.opacity&&!crossobj1679.filters)
crossobj1679.style.opacity=this.degree1679/101
}


fadeshow1679.prototype.startit1679=function(){
var crossobj1679=iebrowser1679? iebrowser1679[this.curcanvas1679] : document.getElementById(this.curcanvas1679)
this.populateslide1679(crossobj1679, this.curimageindex1679)
if (this.pausecheck1679==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1679=this
var crossobjcontainer1679=iebrowser1679? iebrowser1679["master1679"+this.slideshowid1679] : document.getElementById("master1679"+this.slideshowid1679)
crossobjcontainer1679.onmouseover=function(){cacheobj1679.mouseovercheck1679=1}
crossobjcontainer1679.onmouseout=function(){cacheobj1679.mouseovercheck1679=0}
}
this.rotateimage1679()
}
var delay = 10 * 1000;
new fadeshow1679 (fadeimages1679, 250, 250, 0, delay, 1, 'truetrue')

document.write("");
