var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-615{';
wsContentVar += '        width:198px;';
wsContentVar += '        height:100px;';
wsContentVar += '}';
wsContentVar += '';
wsContentVar += '.edu-il-ws-615-content-with-border{';
wsContentVar += '   height:100px;';
wsContentVar += '   width:198px;';
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 fadeimages615=new Array()

fadeimages615 [0]=["https://illinois.edu/lb/files/2008/04/29/2182.jpg", "", "_new", ""];

fadeimages615 [1]=["https://illinois.edu/lb/files/2008/04/29/2181.jpg", "", "_new", ""];

fadeimages615 [2]=["https://illinois.edu/lb/files/2008/04/29/2180.jpg", "", "_new", ""];

fadeimages615 [3]=["https://illinois.edu/lb/files/2008/04/29/2179.jpg", "", "_new", ""];

fadeimages615 [4]=["https://illinois.edu/lb/files/2008/04/29/2175.jpg", "", "_new", ""];

fadeimages615 [5]=["https://illinois.edu/lb/files/2008/04/29/2173.jpg", "", "_new", ""];

fadeimages615 [6]=["https://illinois.edu/lb/files/2008/04/29/2176.jpg", "", "_new", ""];

fadeimages615 [7]=["https://illinois.edu/lb/files/2008/04/29/2172.jpg", "", "_new", ""];

fadeimages615 [8]=["https://illinois.edu/lb/files/2008/04/29/2178.jpg", "", "_new", ""];

fadeimages615 [9]=["https://illinois.edu/lb/files/2008/04/29/2183.jpg", "", "_new", ""];

fadeimages615 [10]=["https://illinois.edu/lb/files/2008/04/29/2171.jpg", "", "_new", ""];

fadeimages615 [11]=["https://illinois.edu/lb/files/2008/04/29/2174.jpg", "", "_new", ""];

fadeimages615 [12]=["https://illinois.edu/lb/files/2008/04/29/2177.jpg", "", "_new", ""];
var fadebgcolor615="white"

////NO need to edit beyond here/////////////

var fadearray615=new Array() //array to cache fadeshow instances
var fadeclear615=new Array() //array to cache corresponding clearinterval pointers

var dom615=(document.getElementById) //modern dom browsers
var iebrowser615=document.all

function fadeshow615(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck615=pause
this.mouseovercheck615=0
this.delay615=delay
this.degree615=10 //initial opacity degree (10%)
this.curimageindex615=0
this.nextimageindex615=1
fadearray615[fadearray615.length]=this
this.slideshowid615=fadearray615.length-1
this.canvasbase615="canvas615"+this.slideshowid615
this.curcanvas615=this.canvasbase615+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages615=theimages
this.imageborder615=parseInt(borderwidth)
this.postimages615=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages615[p]=new Image()
this.postimages615[p].src=theimages[p][0]
this.postimages615[p].alt=theimages[p][3]
}

var fadewidth615=fadewidth+this.imageborder615*2
var fadeheight615=fadeheight+this.imageborder615*2

if (iebrowser615&&dom615||dom615) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master615'+this.slideshowid615+'" class="slide-show-wrapper-615" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase615+'_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:'+fadebgcolor615+'"></div><div id="'+this.canvasbase615+'_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:'+fadebgcolor615+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-615-content-with-border" name="defaultslide615'+this.slideshowid615+'" src="'+this.postimages615[0].src+'" alt="'+this.postimages615[0].alt+'"></div>')

if (iebrowser615&&dom615||dom615) //if IE5+ or modern browsers such as Firefox
this.startit615()
else{
this.curimageindex615++
setInterval("fadearray615["+this.slideshowid615+"].rotateimage615()", this.delay615)
}
}





function fadepic615(obj615){
if (obj615.degree615<100){
obj615.degree615+=10
if (obj615.tempobj615.filters&&obj615.tempobj615.filters[0]){
if (typeof obj615.tempobj615.filters[0].opacity=="number") //if IE6+
obj615.tempobj615.filters[0].opacity=obj615.degree615
else //else if IE5.5-
obj615.tempobj615.style.filter="alpha(opacity="+obj615.degree615+")"
}
else if (obj615.tempobj615.style.MozOpacity)
obj615.tempobj615.style.MozOpacity=obj615.degree615/101
else if (obj615.tempobj615.style.KhtmlOpacity)
obj615.tempobj615.style.KhtmlOpacity=obj615.degree615/100
else if (obj615.tempobj615.style.opacity&&!obj615.tempobj615.filters)
obj615.tempobj615.style.opacity=obj615.degree615/101
}
else{
clearInterval(fadeclear615[obj615.slideshowid615])
obj615.nextcanvas615=(obj615.curcanvas615==obj615.canvasbase615+"_0")? obj615.canvasbase615+"_0" : obj615.canvasbase615+"_1"
obj615.tempobj615=iebrowser615? iebrowser615[obj615.nextcanvas615] : document.getElementById(obj615.nextcanvas615)
obj615.populateslide615(obj615.tempobj615, obj615.nextimageindex615)
obj615.nextimageindex615=(obj615.nextimageindex615<obj615.postimages615.length-1)? obj615.nextimageindex615+1 : 0
setTimeout("fadearray615["+obj615.slideshowid615+"].rotateimage615()", obj615.delay615)
}
}


fadeshow615.prototype.populateslide615=function(picobj615, picindex615){
var slideHTML615=""
if (this.theimages615[picindex615][1]!="") //if associated link exists for image
slideHTML615='<a href="'+this.theimages615[picindex615][1]+'" target="'+this.theimages615[picindex615][2]+'">'
slideHTML615+='<img class="edu-il-ws-615-content-with-border" src="'+this.postimages615[picindex615].src+'" alt="'+this.postimages615[picindex615].alt+'" border="'+this.imageborder615+'px">'
if (this.theimages615[picindex615][1]!="") //if associated link exists for image
slideHTML615+='</a>'
picobj615.innerHTML=slideHTML615
}


fadeshow615.prototype.rotateimage615=function(){
if (this.pausecheck615==1) //if pause onMouseover enabled, cache object
var cacheobj615=this
if (this.mouseovercheck615==1)
setTimeout(function(){cacheobj615.rotateimage615()}, 100)
else if (iebrowser615&&dom615||dom615){
this.resetit615()
var crossobj615=this.tempobj615=iebrowser615? iebrowser615[this.curcanvas615] : document.getElementById(this.curcanvas615)
crossobj615.style.zIndex++
fadeclear615[this.slideshowid615]=setInterval("fadepic615(fadearray615["+this.slideshowid615+"])",50)
this.curcanvas615=(this.curcanvas615==this.canvasbase615+"_0")? this.canvasbase615+"_1" : this.canvasbase615+"_0"
}
else{
var ns4imgobj615=document.images['defaultslide615'+this.slideshowid615]
ns4imgobj615.src=this.postimages615[this.curimageindex615].src
ms4imgobj615.alt=this.postimages615[this.curimageindex615].alt
}
this.curimageindex615=(this.curimageindex615<this.postimages615.length-1)? this.curimageindex615+1 : 0
}

fadeshow615.prototype.resetit615=function(){
this.degree615=10
var crossobj615=iebrowser615? iebrowser615[this.curcanvas615] : document.getElementById(this.curcanvas615)
if (crossobj615.filters&&crossobj615.filters[0]){
if (typeof crossobj615.filters[0].opacity=="number") //if IE6+
crossobj615.filters(0).opacity=this.degree615
else //else if IE5.5-
crossobj615.style.filter="alpha(opacity="+this.degree615+")"
}
else if (crossobj615.style.MozOpacity)
crossobj615.style.MozOpacity=this.degree615/101
else if (crossobj615.style.KhtmlOpacity)
crossobj615.style.KhtmlOpacity=this.degree615/100
else if (crossobj615.style.opacity&&!crossobj615.filters)
crossobj615.style.opacity=this.degree615/101
}


fadeshow615.prototype.startit615=function(){
var crossobj615=iebrowser615? iebrowser615[this.curcanvas615] : document.getElementById(this.curcanvas615)
this.populateslide615(crossobj615, this.curimageindex615)
if (this.pausecheck615==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj615=this
var crossobjcontainer615=iebrowser615? iebrowser615["master615"+this.slideshowid615] : document.getElementById("master615"+this.slideshowid615)
crossobjcontainer615.onmouseover=function(){cacheobj615.mouseovercheck615=1}
crossobjcontainer615.onmouseout=function(){cacheobj615.mouseovercheck615=0}
}
this.rotateimage615()
}
var delay = 5 * 1000;
new fadeshow615 (fadeimages615, 250, 250, 0, delay, 1, 'truetrue')

document.write("");
