var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1831{';
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 fadeimages1831=new Array()

fadeimages1831 [0]=["https://illinois.edu/lb/files/2009/08/24/21008.jpg", "http://www.fightingillini.com/sports/m-wrestl/spec-rel/042809aac.html", "", "Introducing Heffernan"];
var fadebgcolor1831="white"

////NO need to edit beyond here/////////////

var fadearray1831=new Array() //array to cache fadeshow instances
var fadeclear1831=new Array() //array to cache corresponding clearinterval pointers

var dom1831=(document.getElementById) //modern dom browsers
var iebrowser1831=document.all

function fadeshow1831(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1831=pause
this.mouseovercheck1831=0
this.delay1831=delay
this.degree1831=10 //initial opacity degree (10%)
this.curimageindex1831=0
this.nextimageindex1831=1
fadearray1831[fadearray1831.length]=this
this.slideshowid1831=fadearray1831.length-1
this.canvasbase1831="canvas1831"+this.slideshowid1831
this.curcanvas1831=this.canvasbase1831+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1831=theimages
this.imageborder1831=parseInt(borderwidth)
this.postimages1831=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1831[p]=new Image()
this.postimages1831[p].src=theimages[p][0]
this.postimages1831[p].alt=theimages[p][3]
}

var fadewidth1831=fadewidth+this.imageborder1831*2
var fadeheight1831=fadeheight+this.imageborder1831*2

if (iebrowser1831&&dom1831||dom1831) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1831'+this.slideshowid1831+'" class="slide-show-wrapper-1831" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1831+'_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:'+fadebgcolor1831+'"></div><div id="'+this.canvasbase1831+'_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:'+fadebgcolor1831+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1831-content-with-border" name="defaultslide1831'+this.slideshowid1831+'" src="'+this.postimages1831[0].src+'" alt="'+this.postimages1831[0].alt+'"></div>')

if (iebrowser1831&&dom1831||dom1831) //if IE5+ or modern browsers such as Firefox
this.startit1831()
else{
this.curimageindex1831++
setInterval("fadearray1831["+this.slideshowid1831+"].rotateimage1831()", this.delay1831)
}
}





function fadepic1831(obj1831){
if (obj1831.degree1831<100){
obj1831.degree1831+=10
if (obj1831.tempobj1831.filters&&obj1831.tempobj1831.filters[0]){
if (typeof obj1831.tempobj1831.filters[0].opacity=="number") //if IE6+
obj1831.tempobj1831.filters[0].opacity=obj1831.degree1831
else //else if IE5.5-
obj1831.tempobj1831.style.filter="alpha(opacity="+obj1831.degree1831+")"
}
else if (obj1831.tempobj1831.style.MozOpacity)
obj1831.tempobj1831.style.MozOpacity=obj1831.degree1831/101
else if (obj1831.tempobj1831.style.KhtmlOpacity)
obj1831.tempobj1831.style.KhtmlOpacity=obj1831.degree1831/100
else if (obj1831.tempobj1831.style.opacity&&!obj1831.tempobj1831.filters)
obj1831.tempobj1831.style.opacity=obj1831.degree1831/101
}
else{
clearInterval(fadeclear1831[obj1831.slideshowid1831])
obj1831.nextcanvas1831=(obj1831.curcanvas1831==obj1831.canvasbase1831+"_0")? obj1831.canvasbase1831+"_0" : obj1831.canvasbase1831+"_1"
obj1831.tempobj1831=iebrowser1831? iebrowser1831[obj1831.nextcanvas1831] : document.getElementById(obj1831.nextcanvas1831)
obj1831.populateslide1831(obj1831.tempobj1831, obj1831.nextimageindex1831)
obj1831.nextimageindex1831=(obj1831.nextimageindex1831<obj1831.postimages1831.length-1)? obj1831.nextimageindex1831+1 : 0
setTimeout("fadearray1831["+obj1831.slideshowid1831+"].rotateimage1831()", obj1831.delay1831)
}
}


fadeshow1831.prototype.populateslide1831=function(picobj1831, picindex1831){
var slideHTML1831=""
if (this.theimages1831[picindex1831][1]!="") //if associated link exists for image
slideHTML1831='<a href="'+this.theimages1831[picindex1831][1]+'" target="'+this.theimages1831[picindex1831][2]+'">'
slideHTML1831+='<img class="edu-il-ws-1831-content-with-border" src="'+this.postimages1831[picindex1831].src+'" alt="'+this.postimages1831[picindex1831].alt+'" border="'+this.imageborder1831+'px">'
if (this.theimages1831[picindex1831][1]!="") //if associated link exists for image
slideHTML1831+='</a>'
picobj1831.innerHTML=slideHTML1831
}


fadeshow1831.prototype.rotateimage1831=function(){
if (this.pausecheck1831==1) //if pause onMouseover enabled, cache object
var cacheobj1831=this
if (this.mouseovercheck1831==1)
setTimeout(function(){cacheobj1831.rotateimage1831()}, 100)
else if (iebrowser1831&&dom1831||dom1831){
this.resetit1831()
var crossobj1831=this.tempobj1831=iebrowser1831? iebrowser1831[this.curcanvas1831] : document.getElementById(this.curcanvas1831)
crossobj1831.style.zIndex++
fadeclear1831[this.slideshowid1831]=setInterval("fadepic1831(fadearray1831["+this.slideshowid1831+"])",50)
this.curcanvas1831=(this.curcanvas1831==this.canvasbase1831+"_0")? this.canvasbase1831+"_1" : this.canvasbase1831+"_0"
}
else{
var ns4imgobj1831=document.images['defaultslide1831'+this.slideshowid1831]
ns4imgobj1831.src=this.postimages1831[this.curimageindex1831].src
ms4imgobj1831.alt=this.postimages1831[this.curimageindex1831].alt
}
this.curimageindex1831=(this.curimageindex1831<this.postimages1831.length-1)? this.curimageindex1831+1 : 0
}

fadeshow1831.prototype.resetit1831=function(){
this.degree1831=10
var crossobj1831=iebrowser1831? iebrowser1831[this.curcanvas1831] : document.getElementById(this.curcanvas1831)
if (crossobj1831.filters&&crossobj1831.filters[0]){
if (typeof crossobj1831.filters[0].opacity=="number") //if IE6+
crossobj1831.filters(0).opacity=this.degree1831
else //else if IE5.5-
crossobj1831.style.filter="alpha(opacity="+this.degree1831+")"
}
else if (crossobj1831.style.MozOpacity)
crossobj1831.style.MozOpacity=this.degree1831/101
else if (crossobj1831.style.KhtmlOpacity)
crossobj1831.style.KhtmlOpacity=this.degree1831/100
else if (crossobj1831.style.opacity&&!crossobj1831.filters)
crossobj1831.style.opacity=this.degree1831/101
}


fadeshow1831.prototype.startit1831=function(){
var crossobj1831=iebrowser1831? iebrowser1831[this.curcanvas1831] : document.getElementById(this.curcanvas1831)
this.populateslide1831(crossobj1831, this.curimageindex1831)
if (this.pausecheck1831==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1831=this
var crossobjcontainer1831=iebrowser1831? iebrowser1831["master1831"+this.slideshowid1831] : document.getElementById("master1831"+this.slideshowid1831)
crossobjcontainer1831.onmouseover=function(){cacheobj1831.mouseovercheck1831=1}
crossobjcontainer1831.onmouseout=function(){cacheobj1831.mouseovercheck1831=0}
}
this.rotateimage1831()
}
var delay = 7 * 1000;
new fadeshow1831 (fadeimages1831, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
