var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-4426{';
wsContentVar += '        width:352px;';
wsContentVar += '        height:189px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-4426-content-with-border{';
wsContentVar += '   height:189px;';
wsContentVar += '   width:352px;';
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 fadeimages4426=new Array()

fadeimages4426 [0]=["https://illinois.edu/lb/files/2011/11/02/36014.jpg", "", "", ""];

fadeimages4426 [1]=["https://illinois.edu/lb/files/2011/11/02/36015.jpg", "", "", ""];

fadeimages4426 [2]=["https://illinois.edu/lb/files/2011/11/02/36016.jpg", "", "", ""];

fadeimages4426 [3]=["https://illinois.edu/lb/files/2011/11/02/36018.jpg", "", "", ""];

fadeimages4426 [4]=["https://illinois.edu/lb/files/2011/11/02/36019.jpg", "", "", ""];

fadeimages4426 [5]=["https://illinois.edu/lb/files/2011/11/02/36020.jpg", "", "", ""];

fadeimages4426 [6]=["https://illinois.edu/lb/files/2011/11/02/36021.jpg", "", "", ""];

fadeimages4426 [7]=["https://illinois.edu/lb/files/2011/11/02/36022.JPG", "", "", ""];

fadeimages4426 [8]=["https://illinois.edu/lb/files/2011/11/02/36006.gif", "", "", ""];

fadeimages4426 [9]=["https://illinois.edu/lb/files/2011/11/02/36007.jpg", "", "", ""];

fadeimages4426 [10]=["https://illinois.edu/lb/files/2011/11/02/36008.jpg", "", "", ""];

fadeimages4426 [11]=["https://illinois.edu/lb/files/2011/11/02/36009.jpg", "", "", ""];

fadeimages4426 [12]=["https://illinois.edu/lb/files/2011/11/02/36010.jpg", "", "", ""];

fadeimages4426 [13]=["https://illinois.edu/lb/files/2011/11/02/36013.jpg", "", "", ""];

fadeimages4426 [14]=["https://illinois.edu/lb/files/2011/11/02/36011.jpg", "", "", ""];
var fadebgcolor4426="white"

////NO need to edit beyond here/////////////

var fadearray4426=new Array() //array to cache fadeshow instances
var fadeclear4426=new Array() //array to cache corresponding clearinterval pointers

var dom4426=(document.getElementById) //modern dom browsers
var iebrowser4426=document.all

function fadeshow4426(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck4426=pause
this.mouseovercheck4426=0
this.delay4426=delay
this.degree4426=10 //initial opacity degree (10%)
this.curimageindex4426=0
this.nextimageindex4426=1
fadearray4426[fadearray4426.length]=this
this.slideshowid4426=fadearray4426.length-1
this.canvasbase4426="canvas4426"+this.slideshowid4426
this.curcanvas4426=this.canvasbase4426+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages4426=theimages
this.imageborder4426=parseInt(borderwidth)
this.postimages4426=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages4426[p]=new Image()
this.postimages4426[p].src=theimages[p][0]
this.postimages4426[p].alt=theimages[p][3]
}

var fadewidth4426=fadewidth+this.imageborder4426*2
var fadeheight4426=fadeheight+this.imageborder4426*2

if (iebrowser4426&&dom4426||dom4426) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master4426'+this.slideshowid4426+'" class="slide-show-wrapper-4426" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase4426+'_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:'+fadebgcolor4426+'"></div><div id="'+this.canvasbase4426+'_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:'+fadebgcolor4426+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-4426-content-with-border" name="defaultslide4426'+this.slideshowid4426+'" src="'+this.postimages4426[0].src+'" alt="'+this.postimages4426[0].alt+'"></div>')

if (iebrowser4426&&dom4426||dom4426) //if IE5+ or modern browsers such as Firefox
this.startit4426()
else{
this.curimageindex4426++
setInterval("fadearray4426["+this.slideshowid4426+"].rotateimage4426()", this.delay4426)
}
}





function fadepic4426(obj4426){
if (obj4426.degree4426<100){
obj4426.degree4426+=10
if (obj4426.tempobj4426.filters&&obj4426.tempobj4426.filters[0]){
if (typeof obj4426.tempobj4426.filters[0].opacity=="number") //if IE6+
obj4426.tempobj4426.filters[0].opacity=obj4426.degree4426
else //else if IE5.5-
obj4426.tempobj4426.style.filter="alpha(opacity="+obj4426.degree4426+")"
}
else if (obj4426.tempobj4426.style.MozOpacity)
obj4426.tempobj4426.style.MozOpacity=obj4426.degree4426/101
else if (obj4426.tempobj4426.style.KhtmlOpacity)
obj4426.tempobj4426.style.KhtmlOpacity=obj4426.degree4426/100
else if (obj4426.tempobj4426.style.opacity&&!obj4426.tempobj4426.filters)
obj4426.tempobj4426.style.opacity=obj4426.degree4426/101
}
else{
clearInterval(fadeclear4426[obj4426.slideshowid4426])
obj4426.nextcanvas4426=(obj4426.curcanvas4426==obj4426.canvasbase4426+"_0")? obj4426.canvasbase4426+"_0" : obj4426.canvasbase4426+"_1"
obj4426.tempobj4426=iebrowser4426? iebrowser4426[obj4426.nextcanvas4426] : document.getElementById(obj4426.nextcanvas4426)
obj4426.populateslide4426(obj4426.tempobj4426, obj4426.nextimageindex4426)
obj4426.nextimageindex4426=(obj4426.nextimageindex4426<obj4426.postimages4426.length-1)? obj4426.nextimageindex4426+1 : 0
setTimeout("fadearray4426["+obj4426.slideshowid4426+"].rotateimage4426()", obj4426.delay4426)
}
}


fadeshow4426.prototype.populateslide4426=function(picobj4426, picindex4426){
var slideHTML4426=""
if (this.theimages4426[picindex4426][1]!="") //if associated link exists for image
slideHTML4426='<a href="'+this.theimages4426[picindex4426][1]+'" target="'+this.theimages4426[picindex4426][2]+'">'
slideHTML4426+='<img class="edu-il-ws-4426-content-with-border" src="'+this.postimages4426[picindex4426].src+'" alt="'+this.postimages4426[picindex4426].alt+'" border="'+this.imageborder4426+'px">'
if (this.theimages4426[picindex4426][1]!="") //if associated link exists for image
slideHTML4426+='</a>'
picobj4426.innerHTML=slideHTML4426
}


fadeshow4426.prototype.rotateimage4426=function(){
if (this.pausecheck4426==1) //if pause onMouseover enabled, cache object
var cacheobj4426=this
if (this.mouseovercheck4426==1)
setTimeout(function(){cacheobj4426.rotateimage4426()}, 100)
else if (iebrowser4426&&dom4426||dom4426){
this.resetit4426()
var crossobj4426=this.tempobj4426=iebrowser4426? iebrowser4426[this.curcanvas4426] : document.getElementById(this.curcanvas4426)
crossobj4426.style.zIndex++
fadeclear4426[this.slideshowid4426]=setInterval("fadepic4426(fadearray4426["+this.slideshowid4426+"])",50)
this.curcanvas4426=(this.curcanvas4426==this.canvasbase4426+"_0")? this.canvasbase4426+"_1" : this.canvasbase4426+"_0"
}
else{
var ns4imgobj4426=document.images['defaultslide4426'+this.slideshowid4426]
ns4imgobj4426.src=this.postimages4426[this.curimageindex4426].src
ms4imgobj4426.alt=this.postimages4426[this.curimageindex4426].alt
}
this.curimageindex4426=(this.curimageindex4426<this.postimages4426.length-1)? this.curimageindex4426+1 : 0
}

fadeshow4426.prototype.resetit4426=function(){
this.degree4426=10
var crossobj4426=iebrowser4426? iebrowser4426[this.curcanvas4426] : document.getElementById(this.curcanvas4426)
if (crossobj4426.filters&&crossobj4426.filters[0]){
if (typeof crossobj4426.filters[0].opacity=="number") //if IE6+
crossobj4426.filters(0).opacity=this.degree4426
else //else if IE5.5-
crossobj4426.style.filter="alpha(opacity="+this.degree4426+")"
}
else if (crossobj4426.style.MozOpacity)
crossobj4426.style.MozOpacity=this.degree4426/101
else if (crossobj4426.style.KhtmlOpacity)
crossobj4426.style.KhtmlOpacity=this.degree4426/100
else if (crossobj4426.style.opacity&&!crossobj4426.filters)
crossobj4426.style.opacity=this.degree4426/101
}


fadeshow4426.prototype.startit4426=function(){
var crossobj4426=iebrowser4426? iebrowser4426[this.curcanvas4426] : document.getElementById(this.curcanvas4426)
this.populateslide4426(crossobj4426, this.curimageindex4426)
if (this.pausecheck4426==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj4426=this
var crossobjcontainer4426=iebrowser4426? iebrowser4426["master4426"+this.slideshowid4426] : document.getElementById("master4426"+this.slideshowid4426)
crossobjcontainer4426.onmouseover=function(){cacheobj4426.mouseovercheck4426=1}
crossobjcontainer4426.onmouseout=function(){cacheobj4426.mouseovercheck4426=0}
}
this.rotateimage4426()
}
var delay = 3 * 1000;
new fadeshow4426 (fadeimages4426, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

