var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-2487{';
wsContentVar += '        width:700px;';
wsContentVar += '        height:150px;';
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 fadeimages2487=new Array()

fadeimages2487 [0]=["https://illinois.edu/lb/files/2009/08/27/21168.jpg", "", "_new", "Japan House"];

fadeimages2487 [1]=["https://illinois.edu/lb/files/2009/08/27/21165.jpg", "", "_new", "Krannert Art Museum"];

fadeimages2487 [2]=["https://illinois.edu/lb/files/2009/08/27/21169.jpg", "", "_new", "Krannert Center for the Performing Arts"];

fadeimages2487 [3]=["https://illinois.edu/lb/files/2009/08/27/21175.jpg", "", "_new", "Sinfonia da Camera"];

fadeimages2487 [4]=["https://illinois.edu/lb/files/2009/08/27/21171.jpg", "", "_new", "department of dance"];

fadeimages2487 [5]=["https://illinois.edu/lb/files/2009/08/27/21172.jpg", "", "_new", "school of art and design"];

fadeimages2487 [6]=["https://illinois.edu/lb/files/2009/08/27/21167.jpg", "", "_new", "department of urban and regional planning"];

fadeimages2487 [7]=["https://illinois.edu/lb/files/2009/08/27/21170.jpg", "", "_new", "east st. louis action research project (eslarp)"];

fadeimages2487 [8]=["https://illinois.edu/lb/files/2009/08/27/21176.jpg", "", "_new", "school of architecture"];

fadeimages2487 [9]=["https://illinois.edu/lb/files/2009/08/27/21166.jpg", "", "_new", "school of music"];
var fadebgcolor2487="white"

////NO need to edit beyond here/////////////

var fadearray2487=new Array() //array to cache fadeshow instances
var fadeclear2487=new Array() //array to cache corresponding clearinterval pointers

var dom2487=(document.getElementById) //modern dom browsers
var iebrowser2487=document.all

function fadeshow2487(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck2487=pause
this.mouseovercheck2487=0
this.delay2487=delay
this.degree2487=10 //initial opacity degree (10%)
this.curimageindex2487=0
this.nextimageindex2487=1
fadearray2487[fadearray2487.length]=this
this.slideshowid2487=fadearray2487.length-1
this.canvasbase2487="canvas2487"+this.slideshowid2487
this.curcanvas2487=this.canvasbase2487+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages2487=theimages
this.imageborder2487=parseInt(borderwidth)
this.postimages2487=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages2487[p]=new Image()
this.postimages2487[p].src=theimages[p][0]
this.postimages2487[p].alt=theimages[p][3]
}

var fadewidth2487=fadewidth+this.imageborder2487*2
var fadeheight2487=fadeheight+this.imageborder2487*2

if (iebrowser2487&&dom2487||dom2487) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master2487'+this.slideshowid2487+'" class="slide-show-wrapper-2487" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase2487+'_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:'+fadebgcolor2487+'"></div><div id="'+this.canvasbase2487+'_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:'+fadebgcolor2487+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-2487-content-with-border" name="defaultslide2487'+this.slideshowid2487+'" src="'+this.postimages2487[0].src+'" alt="'+this.postimages2487[0].alt+'"></div>')

if (iebrowser2487&&dom2487||dom2487) //if IE5+ or modern browsers such as Firefox
this.startit2487()
else{
this.curimageindex2487++
setInterval("fadearray2487["+this.slideshowid2487+"].rotateimage2487()", this.delay2487)
}
}





function fadepic2487(obj2487){
if (obj2487.degree2487<100){
obj2487.degree2487+=10
if (obj2487.tempobj2487.filters&&obj2487.tempobj2487.filters[0]){
if (typeof obj2487.tempobj2487.filters[0].opacity=="number") //if IE6+
obj2487.tempobj2487.filters[0].opacity=obj2487.degree2487
else //else if IE5.5-
obj2487.tempobj2487.style.filter="alpha(opacity="+obj2487.degree2487+")"
}
else if (obj2487.tempobj2487.style.MozOpacity)
obj2487.tempobj2487.style.MozOpacity=obj2487.degree2487/101
else if (obj2487.tempobj2487.style.KhtmlOpacity)
obj2487.tempobj2487.style.KhtmlOpacity=obj2487.degree2487/100
else if (obj2487.tempobj2487.style.opacity&&!obj2487.tempobj2487.filters)
obj2487.tempobj2487.style.opacity=obj2487.degree2487/101
}
else{
clearInterval(fadeclear2487[obj2487.slideshowid2487])
obj2487.nextcanvas2487=(obj2487.curcanvas2487==obj2487.canvasbase2487+"_0")? obj2487.canvasbase2487+"_0" : obj2487.canvasbase2487+"_1"
obj2487.tempobj2487=iebrowser2487? iebrowser2487[obj2487.nextcanvas2487] : document.getElementById(obj2487.nextcanvas2487)
obj2487.populateslide2487(obj2487.tempobj2487, obj2487.nextimageindex2487)
obj2487.nextimageindex2487=(obj2487.nextimageindex2487<obj2487.postimages2487.length-1)? obj2487.nextimageindex2487+1 : 0
setTimeout("fadearray2487["+obj2487.slideshowid2487+"].rotateimage2487()", obj2487.delay2487)
}
}


fadeshow2487.prototype.populateslide2487=function(picobj2487, picindex2487){
var slideHTML2487=""
if (this.theimages2487[picindex2487][1]!="") //if associated link exists for image
slideHTML2487='<a href="'+this.theimages2487[picindex2487][1]+'" target="'+this.theimages2487[picindex2487][2]+'">'
slideHTML2487+='<img class="edu-il-ws-2487-content-with-border" src="'+this.postimages2487[picindex2487].src+'" alt="'+this.postimages2487[picindex2487].alt+'" border="'+this.imageborder2487+'px">'
if (this.theimages2487[picindex2487][1]!="") //if associated link exists for image
slideHTML2487+='</a>'
picobj2487.innerHTML=slideHTML2487
}


fadeshow2487.prototype.rotateimage2487=function(){
if (this.pausecheck2487==1) //if pause onMouseover enabled, cache object
var cacheobj2487=this
if (this.mouseovercheck2487==1)
setTimeout(function(){cacheobj2487.rotateimage2487()}, 100)
else if (iebrowser2487&&dom2487||dom2487){
this.resetit2487()
var crossobj2487=this.tempobj2487=iebrowser2487? iebrowser2487[this.curcanvas2487] : document.getElementById(this.curcanvas2487)
crossobj2487.style.zIndex++
fadeclear2487[this.slideshowid2487]=setInterval("fadepic2487(fadearray2487["+this.slideshowid2487+"])",50)
this.curcanvas2487=(this.curcanvas2487==this.canvasbase2487+"_0")? this.canvasbase2487+"_1" : this.canvasbase2487+"_0"
}
else{
var ns4imgobj2487=document.images['defaultslide2487'+this.slideshowid2487]
ns4imgobj2487.src=this.postimages2487[this.curimageindex2487].src
ms4imgobj2487.alt=this.postimages2487[this.curimageindex2487].alt
}
this.curimageindex2487=(this.curimageindex2487<this.postimages2487.length-1)? this.curimageindex2487+1 : 0
}

fadeshow2487.prototype.resetit2487=function(){
this.degree2487=10
var crossobj2487=iebrowser2487? iebrowser2487[this.curcanvas2487] : document.getElementById(this.curcanvas2487)
if (crossobj2487.filters&&crossobj2487.filters[0]){
if (typeof crossobj2487.filters[0].opacity=="number") //if IE6+
crossobj2487.filters(0).opacity=this.degree2487
else //else if IE5.5-
crossobj2487.style.filter="alpha(opacity="+this.degree2487+")"
}
else if (crossobj2487.style.MozOpacity)
crossobj2487.style.MozOpacity=this.degree2487/101
else if (crossobj2487.style.KhtmlOpacity)
crossobj2487.style.KhtmlOpacity=this.degree2487/100
else if (crossobj2487.style.opacity&&!crossobj2487.filters)
crossobj2487.style.opacity=this.degree2487/101
}


fadeshow2487.prototype.startit2487=function(){
var crossobj2487=iebrowser2487? iebrowser2487[this.curcanvas2487] : document.getElementById(this.curcanvas2487)
this.populateslide2487(crossobj2487, this.curimageindex2487)
if (this.pausecheck2487==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj2487=this
var crossobjcontainer2487=iebrowser2487? iebrowser2487["master2487"+this.slideshowid2487] : document.getElementById("master2487"+this.slideshowid2487)
crossobjcontainer2487.onmouseover=function(){cacheobj2487.mouseovercheck2487=1}
crossobjcontainer2487.onmouseout=function(){cacheobj2487.mouseovercheck2487=0}
}
this.rotateimage2487()
}
var delay = 3 * 1000;
new fadeshow2487 (fadeimages2487, 250, 250, 0, delay, 1, 'truetrue')

document.write("");
