var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1232{';
wsContentVar += '        width:1000px;';
wsContentVar += '        height:176px;';
wsContentVar += '        xxxborder:1px solid black;';
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 fadeimages1232=new Array()

fadeimages1232 [0]=["https://illinois.edu/lb/files/2011/05/05/33344.jpg", "", "", ""];

fadeimages1232 [1]=["https://illinois.edu/lb/files/2011/05/05/33348.jpg", "", "", ""];

fadeimages1232 [2]=["https://illinois.edu/lb/files/2011/05/05/33347.jpg", "", "", ""];
var fadebgcolor1232="white"

////NO need to edit beyond here/////////////

var fadearray1232=new Array() //array to cache fadeshow instances
var fadeclear1232=new Array() //array to cache corresponding clearinterval pointers

var dom1232=(document.getElementById) //modern dom browsers
var iebrowser1232=document.all

function fadeshow1232(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1232=pause
this.mouseovercheck1232=0
this.delay1232=delay
this.degree1232=10 //initial opacity degree (10%)
this.curimageindex1232=0
this.nextimageindex1232=1
fadearray1232[fadearray1232.length]=this
this.slideshowid1232=fadearray1232.length-1
this.canvasbase1232="canvas1232"+this.slideshowid1232
this.curcanvas1232=this.canvasbase1232+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1232=theimages
this.imageborder1232=parseInt(borderwidth)
this.postimages1232=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1232[p]=new Image()
this.postimages1232[p].src=theimages[p][0]
this.postimages1232[p].alt=theimages[p][3]
}

var fadewidth1232=fadewidth+this.imageborder1232*2
var fadeheight1232=fadeheight+this.imageborder1232*2

if (iebrowser1232&&dom1232||dom1232) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1232'+this.slideshowid1232+'" class="slide-show-wrapper-1232" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1232+'_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:'+fadebgcolor1232+'"></div><div id="'+this.canvasbase1232+'_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:'+fadebgcolor1232+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1232-content-with-border" name="defaultslide1232'+this.slideshowid1232+'" src="'+this.postimages1232[0].src+'" alt="'+this.postimages1232[0].alt+'"></div>')

if (iebrowser1232&&dom1232||dom1232) //if IE5+ or modern browsers such as Firefox
this.startit1232()
else{
this.curimageindex1232++
setInterval("fadearray1232["+this.slideshowid1232+"].rotateimage1232()", this.delay1232)
}
}





function fadepic1232(obj1232){
if (obj1232.degree1232<100){
obj1232.degree1232+=10
if (obj1232.tempobj1232.filters&&obj1232.tempobj1232.filters[0]){
if (typeof obj1232.tempobj1232.filters[0].opacity=="number") //if IE6+
obj1232.tempobj1232.filters[0].opacity=obj1232.degree1232
else //else if IE5.5-
obj1232.tempobj1232.style.filter="alpha(opacity="+obj1232.degree1232+")"
}
else if (obj1232.tempobj1232.style.MozOpacity)
obj1232.tempobj1232.style.MozOpacity=obj1232.degree1232/101
else if (obj1232.tempobj1232.style.KhtmlOpacity)
obj1232.tempobj1232.style.KhtmlOpacity=obj1232.degree1232/100
else if (obj1232.tempobj1232.style.opacity&&!obj1232.tempobj1232.filters)
obj1232.tempobj1232.style.opacity=obj1232.degree1232/101
}
else{
clearInterval(fadeclear1232[obj1232.slideshowid1232])
obj1232.nextcanvas1232=(obj1232.curcanvas1232==obj1232.canvasbase1232+"_0")? obj1232.canvasbase1232+"_0" : obj1232.canvasbase1232+"_1"
obj1232.tempobj1232=iebrowser1232? iebrowser1232[obj1232.nextcanvas1232] : document.getElementById(obj1232.nextcanvas1232)
obj1232.populateslide1232(obj1232.tempobj1232, obj1232.nextimageindex1232)
obj1232.nextimageindex1232=(obj1232.nextimageindex1232<obj1232.postimages1232.length-1)? obj1232.nextimageindex1232+1 : 0
setTimeout("fadearray1232["+obj1232.slideshowid1232+"].rotateimage1232()", obj1232.delay1232)
}
}


fadeshow1232.prototype.populateslide1232=function(picobj1232, picindex1232){
var slideHTML1232=""
if (this.theimages1232[picindex1232][1]!="") //if associated link exists for image
slideHTML1232='<a href="'+this.theimages1232[picindex1232][1]+'" target="'+this.theimages1232[picindex1232][2]+'">'
slideHTML1232+='<img class="edu-il-ws-1232-content-with-border" src="'+this.postimages1232[picindex1232].src+'" alt="'+this.postimages1232[picindex1232].alt+'" border="'+this.imageborder1232+'px">'
if (this.theimages1232[picindex1232][1]!="") //if associated link exists for image
slideHTML1232+='</a>'
picobj1232.innerHTML=slideHTML1232
}


fadeshow1232.prototype.rotateimage1232=function(){
if (this.pausecheck1232==1) //if pause onMouseover enabled, cache object
var cacheobj1232=this
if (this.mouseovercheck1232==1)
setTimeout(function(){cacheobj1232.rotateimage1232()}, 100)
else if (iebrowser1232&&dom1232||dom1232){
this.resetit1232()
var crossobj1232=this.tempobj1232=iebrowser1232? iebrowser1232[this.curcanvas1232] : document.getElementById(this.curcanvas1232)
crossobj1232.style.zIndex++
fadeclear1232[this.slideshowid1232]=setInterval("fadepic1232(fadearray1232["+this.slideshowid1232+"])",50)
this.curcanvas1232=(this.curcanvas1232==this.canvasbase1232+"_0")? this.canvasbase1232+"_1" : this.canvasbase1232+"_0"
}
else{
var ns4imgobj1232=document.images['defaultslide1232'+this.slideshowid1232]
ns4imgobj1232.src=this.postimages1232[this.curimageindex1232].src
ms4imgobj1232.alt=this.postimages1232[this.curimageindex1232].alt
}
this.curimageindex1232=(this.curimageindex1232<this.postimages1232.length-1)? this.curimageindex1232+1 : 0
}

fadeshow1232.prototype.resetit1232=function(){
this.degree1232=10
var crossobj1232=iebrowser1232? iebrowser1232[this.curcanvas1232] : document.getElementById(this.curcanvas1232)
if (crossobj1232.filters&&crossobj1232.filters[0]){
if (typeof crossobj1232.filters[0].opacity=="number") //if IE6+
crossobj1232.filters(0).opacity=this.degree1232
else //else if IE5.5-
crossobj1232.style.filter="alpha(opacity="+this.degree1232+")"
}
else if (crossobj1232.style.MozOpacity)
crossobj1232.style.MozOpacity=this.degree1232/101
else if (crossobj1232.style.KhtmlOpacity)
crossobj1232.style.KhtmlOpacity=this.degree1232/100
else if (crossobj1232.style.opacity&&!crossobj1232.filters)
crossobj1232.style.opacity=this.degree1232/101
}


fadeshow1232.prototype.startit1232=function(){
var crossobj1232=iebrowser1232? iebrowser1232[this.curcanvas1232] : document.getElementById(this.curcanvas1232)
this.populateslide1232(crossobj1232, this.curimageindex1232)
if (this.pausecheck1232==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1232=this
var crossobjcontainer1232=iebrowser1232? iebrowser1232["master1232"+this.slideshowid1232] : document.getElementById("master1232"+this.slideshowid1232)
crossobjcontainer1232.onmouseover=function(){cacheobj1232.mouseovercheck1232=1}
crossobjcontainer1232.onmouseout=function(){cacheobj1232.mouseovercheck1232=0}
}
this.rotateimage1232()
}
var delay = 7 * 1000;
new fadeshow1232 (fadeimages1232, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

