var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1244{';
wsContentVar += '        width:748px;';
wsContentVar += '        height:250px;';
wsContentVar += '        z-index:0;';
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 fadeimages1244=new Array()

fadeimages1244 [0]=["https://illinois.edu/lb/files/2009/04/28/10102.jpg", "http://www.housing.illinois.edu", "", ""];

fadeimages1244 [1]=["https://illinois.edu/lb/files/2008/07/22/4306.jpg", "", "", ""];

fadeimages1244 [2]=["https://illinois.edu/lb/files/2008/07/22/4307.jpg", "", "", ""];

fadeimages1244 [3]=["https://illinois.edu/lb/files/2008/07/10/4150.jpg", "", "", ""];

fadeimages1244 [4]=["https://illinois.edu/lb/files/2008/07/08/4093.jpg", "", "", ""];

fadeimages1244 [5]=["https://illinois.edu/lb/files/2008/07/03/4048.jpg", "", "", ""];

fadeimages1244 [6]=["https://illinois.edu/lb/files/2008/07/03/4046.jpg", "", "", ""];
var fadebgcolor1244="white"

////NO need to edit beyond here/////////////

var fadearray1244=new Array() //array to cache fadeshow instances
var fadeclear1244=new Array() //array to cache corresponding clearinterval pointers

var dom1244=(document.getElementById) //modern dom browsers
var iebrowser1244=document.all

function fadeshow1244(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1244=pause
this.mouseovercheck1244=0
this.delay1244=delay
this.degree1244=10 //initial opacity degree (10%)
this.curimageindex1244=0
this.nextimageindex1244=1
fadearray1244[fadearray1244.length]=this
this.slideshowid1244=fadearray1244.length-1
this.canvasbase1244="canvas1244"+this.slideshowid1244
this.curcanvas1244=this.canvasbase1244+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1244=theimages
this.imageborder1244=parseInt(borderwidth)
this.postimages1244=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1244[p]=new Image()
this.postimages1244[p].src=theimages[p][0]
this.postimages1244[p].alt=theimages[p][3]
}

var fadewidth1244=fadewidth+this.imageborder1244*2
var fadeheight1244=fadeheight+this.imageborder1244*2

if (iebrowser1244&&dom1244||dom1244) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1244'+this.slideshowid1244+'" class="slide-show-wrapper-1244" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1244+'_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:'+fadebgcolor1244+'"></div><div id="'+this.canvasbase1244+'_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:'+fadebgcolor1244+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1244-content-with-border" name="defaultslide1244'+this.slideshowid1244+'" src="'+this.postimages1244[0].src+'" alt="'+this.postimages1244[0].alt+'"></div>')

if (iebrowser1244&&dom1244||dom1244) //if IE5+ or modern browsers such as Firefox
this.startit1244()
else{
this.curimageindex1244++
setInterval("fadearray1244["+this.slideshowid1244+"].rotateimage1244()", this.delay1244)
}
}





function fadepic1244(obj1244){
if (obj1244.degree1244<100){
obj1244.degree1244+=10
if (obj1244.tempobj1244.filters&&obj1244.tempobj1244.filters[0]){
if (typeof obj1244.tempobj1244.filters[0].opacity=="number") //if IE6+
obj1244.tempobj1244.filters[0].opacity=obj1244.degree1244
else //else if IE5.5-
obj1244.tempobj1244.style.filter="alpha(opacity="+obj1244.degree1244+")"
}
else if (obj1244.tempobj1244.style.MozOpacity)
obj1244.tempobj1244.style.MozOpacity=obj1244.degree1244/101
else if (obj1244.tempobj1244.style.KhtmlOpacity)
obj1244.tempobj1244.style.KhtmlOpacity=obj1244.degree1244/100
else if (obj1244.tempobj1244.style.opacity&&!obj1244.tempobj1244.filters)
obj1244.tempobj1244.style.opacity=obj1244.degree1244/101
}
else{
clearInterval(fadeclear1244[obj1244.slideshowid1244])
obj1244.nextcanvas1244=(obj1244.curcanvas1244==obj1244.canvasbase1244+"_0")? obj1244.canvasbase1244+"_0" : obj1244.canvasbase1244+"_1"
obj1244.tempobj1244=iebrowser1244? iebrowser1244[obj1244.nextcanvas1244] : document.getElementById(obj1244.nextcanvas1244)
obj1244.populateslide1244(obj1244.tempobj1244, obj1244.nextimageindex1244)
obj1244.nextimageindex1244=(obj1244.nextimageindex1244<obj1244.postimages1244.length-1)? obj1244.nextimageindex1244+1 : 0
setTimeout("fadearray1244["+obj1244.slideshowid1244+"].rotateimage1244()", obj1244.delay1244)
}
}


fadeshow1244.prototype.populateslide1244=function(picobj1244, picindex1244){
var slideHTML1244=""
if (this.theimages1244[picindex1244][1]!="") //if associated link exists for image
slideHTML1244='<a href="'+this.theimages1244[picindex1244][1]+'" target="'+this.theimages1244[picindex1244][2]+'">'
slideHTML1244+='<img class="edu-il-ws-1244-content-with-border" src="'+this.postimages1244[picindex1244].src+'" alt="'+this.postimages1244[picindex1244].alt+'" border="'+this.imageborder1244+'px">'
if (this.theimages1244[picindex1244][1]!="") //if associated link exists for image
slideHTML1244+='</a>'
picobj1244.innerHTML=slideHTML1244
}


fadeshow1244.prototype.rotateimage1244=function(){
if (this.pausecheck1244==1) //if pause onMouseover enabled, cache object
var cacheobj1244=this
if (this.mouseovercheck1244==1)
setTimeout(function(){cacheobj1244.rotateimage1244()}, 100)
else if (iebrowser1244&&dom1244||dom1244){
this.resetit1244()
var crossobj1244=this.tempobj1244=iebrowser1244? iebrowser1244[this.curcanvas1244] : document.getElementById(this.curcanvas1244)
crossobj1244.style.zIndex++
fadeclear1244[this.slideshowid1244]=setInterval("fadepic1244(fadearray1244["+this.slideshowid1244+"])",50)
this.curcanvas1244=(this.curcanvas1244==this.canvasbase1244+"_0")? this.canvasbase1244+"_1" : this.canvasbase1244+"_0"
}
else{
var ns4imgobj1244=document.images['defaultslide1244'+this.slideshowid1244]
ns4imgobj1244.src=this.postimages1244[this.curimageindex1244].src
ms4imgobj1244.alt=this.postimages1244[this.curimageindex1244].alt
}
this.curimageindex1244=(this.curimageindex1244<this.postimages1244.length-1)? this.curimageindex1244+1 : 0
}

fadeshow1244.prototype.resetit1244=function(){
this.degree1244=10
var crossobj1244=iebrowser1244? iebrowser1244[this.curcanvas1244] : document.getElementById(this.curcanvas1244)
if (crossobj1244.filters&&crossobj1244.filters[0]){
if (typeof crossobj1244.filters[0].opacity=="number") //if IE6+
crossobj1244.filters(0).opacity=this.degree1244
else //else if IE5.5-
crossobj1244.style.filter="alpha(opacity="+this.degree1244+")"
}
else if (crossobj1244.style.MozOpacity)
crossobj1244.style.MozOpacity=this.degree1244/101
else if (crossobj1244.style.KhtmlOpacity)
crossobj1244.style.KhtmlOpacity=this.degree1244/100
else if (crossobj1244.style.opacity&&!crossobj1244.filters)
crossobj1244.style.opacity=this.degree1244/101
}


fadeshow1244.prototype.startit1244=function(){
var crossobj1244=iebrowser1244? iebrowser1244[this.curcanvas1244] : document.getElementById(this.curcanvas1244)
this.populateslide1244(crossobj1244, this.curimageindex1244)
if (this.pausecheck1244==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1244=this
var crossobjcontainer1244=iebrowser1244? iebrowser1244["master1244"+this.slideshowid1244] : document.getElementById("master1244"+this.slideshowid1244)
crossobjcontainer1244.onmouseover=function(){cacheobj1244.mouseovercheck1244=1}
crossobjcontainer1244.onmouseout=function(){cacheobj1244.mouseovercheck1244=0}
}
this.rotateimage1244()
}
var delay = 3 * 1000;
new fadeshow1244 (fadeimages1244, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
