var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1754{';
wsContentVar += '    width:144px;';
wsContentVar += '    height:218px;';
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 fadeimages1754=new Array()

fadeimages1754 [0]=["https://illinois.edu/lb/files/2008/12/12/7086.gif", "", "", ""];

fadeimages1754 [1]=["https://illinois.edu/lb/files/2008/12/12/7087.gif", "", "", ""];

fadeimages1754 [2]=["https://illinois.edu/lb/files/2008/12/12/7088.gif", "", "", ""];

fadeimages1754 [3]=["https://illinois.edu/lb/files/2008/12/12/7089.gif", "", "", ""];

fadeimages1754 [4]=["https://illinois.edu/lb/files/2008/12/12/7090.gif", "", "", ""];

fadeimages1754 [5]=["https://illinois.edu/lb/files/2008/12/12/7085.gif", "", "", ""];
var fadebgcolor1754="white"

////NO need to edit beyond here/////////////

var fadearray1754=new Array() //array to cache fadeshow instances
var fadeclear1754=new Array() //array to cache corresponding clearinterval pointers

var dom1754=(document.getElementById) //modern dom browsers
var iebrowser1754=document.all

function fadeshow1754(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1754=pause
this.mouseovercheck1754=0
this.delay1754=delay
this.degree1754=10 //initial opacity degree (10%)
this.curimageindex1754=0
this.nextimageindex1754=1
fadearray1754[fadearray1754.length]=this
this.slideshowid1754=fadearray1754.length-1
this.canvasbase1754="canvas1754"+this.slideshowid1754
this.curcanvas1754=this.canvasbase1754+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1754=theimages
this.imageborder1754=parseInt(borderwidth)
this.postimages1754=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1754[p]=new Image()
this.postimages1754[p].src=theimages[p][0]
this.postimages1754[p].alt=theimages[p][3]
}

var fadewidth1754=fadewidth+this.imageborder1754*2
var fadeheight1754=fadeheight+this.imageborder1754*2

if (iebrowser1754&&dom1754||dom1754) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1754'+this.slideshowid1754+'" class="slide-show-wrapper-1754" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1754+'_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:'+fadebgcolor1754+'"></div><div id="'+this.canvasbase1754+'_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:'+fadebgcolor1754+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1754-content-with-border" name="defaultslide1754'+this.slideshowid1754+'" src="'+this.postimages1754[0].src+'" alt="'+this.postimages1754[0].alt+'"></div>')

if (iebrowser1754&&dom1754||dom1754) //if IE5+ or modern browsers such as Firefox
this.startit1754()
else{
this.curimageindex1754++
setInterval("fadearray1754["+this.slideshowid1754+"].rotateimage1754()", this.delay1754)
}
}





function fadepic1754(obj1754){
if (obj1754.degree1754<100){
obj1754.degree1754+=10
if (obj1754.tempobj1754.filters&&obj1754.tempobj1754.filters[0]){
if (typeof obj1754.tempobj1754.filters[0].opacity=="number") //if IE6+
obj1754.tempobj1754.filters[0].opacity=obj1754.degree1754
else //else if IE5.5-
obj1754.tempobj1754.style.filter="alpha(opacity="+obj1754.degree1754+")"
}
else if (obj1754.tempobj1754.style.MozOpacity)
obj1754.tempobj1754.style.MozOpacity=obj1754.degree1754/101
else if (obj1754.tempobj1754.style.KhtmlOpacity)
obj1754.tempobj1754.style.KhtmlOpacity=obj1754.degree1754/100
else if (obj1754.tempobj1754.style.opacity&&!obj1754.tempobj1754.filters)
obj1754.tempobj1754.style.opacity=obj1754.degree1754/101
}
else{
clearInterval(fadeclear1754[obj1754.slideshowid1754])
obj1754.nextcanvas1754=(obj1754.curcanvas1754==obj1754.canvasbase1754+"_0")? obj1754.canvasbase1754+"_0" : obj1754.canvasbase1754+"_1"
obj1754.tempobj1754=iebrowser1754? iebrowser1754[obj1754.nextcanvas1754] : document.getElementById(obj1754.nextcanvas1754)
obj1754.populateslide1754(obj1754.tempobj1754, obj1754.nextimageindex1754)
obj1754.nextimageindex1754=(obj1754.nextimageindex1754<obj1754.postimages1754.length-1)? obj1754.nextimageindex1754+1 : 0
setTimeout("fadearray1754["+obj1754.slideshowid1754+"].rotateimage1754()", obj1754.delay1754)
}
}


fadeshow1754.prototype.populateslide1754=function(picobj1754, picindex1754){
var slideHTML1754=""
if (this.theimages1754[picindex1754][1]!="") //if associated link exists for image
slideHTML1754='<a href="'+this.theimages1754[picindex1754][1]+'" target="'+this.theimages1754[picindex1754][2]+'">'
slideHTML1754+='<img class="edu-il-ws-1754-content-with-border" src="'+this.postimages1754[picindex1754].src+'" alt="'+this.postimages1754[picindex1754].alt+'" border="'+this.imageborder1754+'px">'
if (this.theimages1754[picindex1754][1]!="") //if associated link exists for image
slideHTML1754+='</a>'
picobj1754.innerHTML=slideHTML1754
}


fadeshow1754.prototype.rotateimage1754=function(){
if (this.pausecheck1754==1) //if pause onMouseover enabled, cache object
var cacheobj1754=this
if (this.mouseovercheck1754==1)
setTimeout(function(){cacheobj1754.rotateimage1754()}, 100)
else if (iebrowser1754&&dom1754||dom1754){
this.resetit1754()
var crossobj1754=this.tempobj1754=iebrowser1754? iebrowser1754[this.curcanvas1754] : document.getElementById(this.curcanvas1754)
crossobj1754.style.zIndex++
fadeclear1754[this.slideshowid1754]=setInterval("fadepic1754(fadearray1754["+this.slideshowid1754+"])",50)
this.curcanvas1754=(this.curcanvas1754==this.canvasbase1754+"_0")? this.canvasbase1754+"_1" : this.canvasbase1754+"_0"
}
else{
var ns4imgobj1754=document.images['defaultslide1754'+this.slideshowid1754]
ns4imgobj1754.src=this.postimages1754[this.curimageindex1754].src
ms4imgobj1754.alt=this.postimages1754[this.curimageindex1754].alt
}
this.curimageindex1754=(this.curimageindex1754<this.postimages1754.length-1)? this.curimageindex1754+1 : 0
}

fadeshow1754.prototype.resetit1754=function(){
this.degree1754=10
var crossobj1754=iebrowser1754? iebrowser1754[this.curcanvas1754] : document.getElementById(this.curcanvas1754)
if (crossobj1754.filters&&crossobj1754.filters[0]){
if (typeof crossobj1754.filters[0].opacity=="number") //if IE6+
crossobj1754.filters(0).opacity=this.degree1754
else //else if IE5.5-
crossobj1754.style.filter="alpha(opacity="+this.degree1754+")"
}
else if (crossobj1754.style.MozOpacity)
crossobj1754.style.MozOpacity=this.degree1754/101
else if (crossobj1754.style.KhtmlOpacity)
crossobj1754.style.KhtmlOpacity=this.degree1754/100
else if (crossobj1754.style.opacity&&!crossobj1754.filters)
crossobj1754.style.opacity=this.degree1754/101
}


fadeshow1754.prototype.startit1754=function(){
var crossobj1754=iebrowser1754? iebrowser1754[this.curcanvas1754] : document.getElementById(this.curcanvas1754)
this.populateslide1754(crossobj1754, this.curimageindex1754)
if (this.pausecheck1754==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1754=this
var crossobjcontainer1754=iebrowser1754? iebrowser1754["master1754"+this.slideshowid1754] : document.getElementById("master1754"+this.slideshowid1754)
crossobjcontainer1754.onmouseover=function(){cacheobj1754.mouseovercheck1754=1}
crossobjcontainer1754.onmouseout=function(){cacheobj1754.mouseovercheck1754=0}
}
this.rotateimage1754()
}
var delay = 3 * 1000;
new fadeshow1754 (fadeimages1754, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
