var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-3118{';
wsContentVar += '        width:650px;';
wsContentVar += '        height:280px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-3118-content-with-border{';
wsContentVar += '   height:280px;';
wsContentVar += '   width:650px;';
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 fadeimages3118=new Array()

fadeimages3118 [0]=["https://illinois.edu/lb/files/2012/01/21/37283.jpg", "", "", "Arts Symposium"];

fadeimages3118 [1]=["https://illinois.edu/lb/files/2012/01/01/36947.jpg", "", "", "After Ab Ex"];

fadeimages3118 [2]=["https://illinois.edu/lb/files/2012/01/01/36946.jpg", "", "", "Glass"];

fadeimages3118 [3]=["https://illinois.edu/lb/files/2012/01/01/36945.jpg", "", "", "Schneemann"];

fadeimages3118 [4]=["https://illinois.edu/lb/files/2011/06/20/34000.jpg", "", "", "Inness"];
var fadebgcolor3118="white"

////NO need to edit beyond here/////////////

var fadearray3118=new Array() //array to cache fadeshow instances
var fadeclear3118=new Array() //array to cache corresponding clearinterval pointers

var dom3118=(document.getElementById) //modern dom browsers
var iebrowser3118=document.all

function fadeshow3118(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck3118=pause
this.mouseovercheck3118=0
this.delay3118=delay
this.degree3118=10 //initial opacity degree (10%)
this.curimageindex3118=0
this.nextimageindex3118=1
fadearray3118[fadearray3118.length]=this
this.slideshowid3118=fadearray3118.length-1
this.canvasbase3118="canvas3118"+this.slideshowid3118
this.curcanvas3118=this.canvasbase3118+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages3118=theimages
this.imageborder3118=parseInt(borderwidth)
this.postimages3118=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages3118[p]=new Image()
this.postimages3118[p].src=theimages[p][0]
this.postimages3118[p].alt=theimages[p][3]
}

var fadewidth3118=fadewidth+this.imageborder3118*2
var fadeheight3118=fadeheight+this.imageborder3118*2

if (iebrowser3118&&dom3118||dom3118) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master3118'+this.slideshowid3118+'" class="slide-show-wrapper-3118" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase3118+'_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:'+fadebgcolor3118+'"></div><div id="'+this.canvasbase3118+'_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:'+fadebgcolor3118+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-3118-content-with-border" name="defaultslide3118'+this.slideshowid3118+'" src="'+this.postimages3118[0].src+'" alt="'+this.postimages3118[0].alt+'"></div>')

if (iebrowser3118&&dom3118||dom3118) //if IE5+ or modern browsers such as Firefox
this.startit3118()
else{
this.curimageindex3118++
setInterval("fadearray3118["+this.slideshowid3118+"].rotateimage3118()", this.delay3118)
}
}





function fadepic3118(obj3118){
if (obj3118.degree3118<100){
obj3118.degree3118+=10
if (obj3118.tempobj3118.filters&&obj3118.tempobj3118.filters[0]){
if (typeof obj3118.tempobj3118.filters[0].opacity=="number") //if IE6+
obj3118.tempobj3118.filters[0].opacity=obj3118.degree3118
else //else if IE5.5-
obj3118.tempobj3118.style.filter="alpha(opacity="+obj3118.degree3118+")"
}
else if (obj3118.tempobj3118.style.MozOpacity)
obj3118.tempobj3118.style.MozOpacity=obj3118.degree3118/101
else if (obj3118.tempobj3118.style.KhtmlOpacity)
obj3118.tempobj3118.style.KhtmlOpacity=obj3118.degree3118/100
else if (obj3118.tempobj3118.style.opacity&&!obj3118.tempobj3118.filters)
obj3118.tempobj3118.style.opacity=obj3118.degree3118/101
}
else{
clearInterval(fadeclear3118[obj3118.slideshowid3118])
obj3118.nextcanvas3118=(obj3118.curcanvas3118==obj3118.canvasbase3118+"_0")? obj3118.canvasbase3118+"_0" : obj3118.canvasbase3118+"_1"
obj3118.tempobj3118=iebrowser3118? iebrowser3118[obj3118.nextcanvas3118] : document.getElementById(obj3118.nextcanvas3118)
obj3118.populateslide3118(obj3118.tempobj3118, obj3118.nextimageindex3118)
obj3118.nextimageindex3118=(obj3118.nextimageindex3118<obj3118.postimages3118.length-1)? obj3118.nextimageindex3118+1 : 0
setTimeout("fadearray3118["+obj3118.slideshowid3118+"].rotateimage3118()", obj3118.delay3118)
}
}


fadeshow3118.prototype.populateslide3118=function(picobj3118, picindex3118){
var slideHTML3118=""
if (this.theimages3118[picindex3118][1]!="") //if associated link exists for image
slideHTML3118='<a href="'+this.theimages3118[picindex3118][1]+'" target="'+this.theimages3118[picindex3118][2]+'">'
slideHTML3118+='<img class="edu-il-ws-3118-content-with-border" src="'+this.postimages3118[picindex3118].src+'" alt="'+this.postimages3118[picindex3118].alt+'" border="'+this.imageborder3118+'px">'
if (this.theimages3118[picindex3118][1]!="") //if associated link exists for image
slideHTML3118+='</a>'
picobj3118.innerHTML=slideHTML3118
}


fadeshow3118.prototype.rotateimage3118=function(){
if (this.pausecheck3118==1) //if pause onMouseover enabled, cache object
var cacheobj3118=this
if (this.mouseovercheck3118==1)
setTimeout(function(){cacheobj3118.rotateimage3118()}, 100)
else if (iebrowser3118&&dom3118||dom3118){
this.resetit3118()
var crossobj3118=this.tempobj3118=iebrowser3118? iebrowser3118[this.curcanvas3118] : document.getElementById(this.curcanvas3118)
crossobj3118.style.zIndex++
fadeclear3118[this.slideshowid3118]=setInterval("fadepic3118(fadearray3118["+this.slideshowid3118+"])",50)
this.curcanvas3118=(this.curcanvas3118==this.canvasbase3118+"_0")? this.canvasbase3118+"_1" : this.canvasbase3118+"_0"
}
else{
var ns4imgobj3118=document.images['defaultslide3118'+this.slideshowid3118]
ns4imgobj3118.src=this.postimages3118[this.curimageindex3118].src
ms4imgobj3118.alt=this.postimages3118[this.curimageindex3118].alt
}
this.curimageindex3118=(this.curimageindex3118<this.postimages3118.length-1)? this.curimageindex3118+1 : 0
}

fadeshow3118.prototype.resetit3118=function(){
this.degree3118=10
var crossobj3118=iebrowser3118? iebrowser3118[this.curcanvas3118] : document.getElementById(this.curcanvas3118)
if (crossobj3118.filters&&crossobj3118.filters[0]){
if (typeof crossobj3118.filters[0].opacity=="number") //if IE6+
crossobj3118.filters(0).opacity=this.degree3118
else //else if IE5.5-
crossobj3118.style.filter="alpha(opacity="+this.degree3118+")"
}
else if (crossobj3118.style.MozOpacity)
crossobj3118.style.MozOpacity=this.degree3118/101
else if (crossobj3118.style.KhtmlOpacity)
crossobj3118.style.KhtmlOpacity=this.degree3118/100
else if (crossobj3118.style.opacity&&!crossobj3118.filters)
crossobj3118.style.opacity=this.degree3118/101
}


fadeshow3118.prototype.startit3118=function(){
var crossobj3118=iebrowser3118? iebrowser3118[this.curcanvas3118] : document.getElementById(this.curcanvas3118)
this.populateslide3118(crossobj3118, this.curimageindex3118)
if (this.pausecheck3118==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj3118=this
var crossobjcontainer3118=iebrowser3118? iebrowser3118["master3118"+this.slideshowid3118] : document.getElementById("master3118"+this.slideshowid3118)
crossobjcontainer3118.onmouseover=function(){cacheobj3118.mouseovercheck3118=1}
crossobjcontainer3118.onmouseout=function(){cacheobj3118.mouseovercheck3118=0}
}
this.rotateimage3118()
}
var delay = 5 * 1000;
new fadeshow3118 (fadeimages3118, 250, 250, 0, delay, 1, 'truetrue')

document.write("");

