var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-2651{';
wsContentVar += '        width:306px;';
wsContentVar += '        height:126px;';
wsContentVar += '}';
wsContentVar += '.edu-il-ws-2651-content-with-border{';
wsContentVar += '   height:126px;';
wsContentVar += '   width:306px;';
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 fadeimages2651=new Array()

fadeimages2651 [0]=["https://illinois.edu/lb/files/2009/10/19/22377.jpg", "", "", "CoachBruceWeber.com"];
var fadebgcolor2651="white"

////NO need to edit beyond here/////////////

var fadearray2651=new Array() //array to cache fadeshow instances
var fadeclear2651=new Array() //array to cache corresponding clearinterval pointers

var dom2651=(document.getElementById) //modern dom browsers
var iebrowser2651=document.all

function fadeshow2651(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck2651=pause
this.mouseovercheck2651=0
this.delay2651=delay
this.degree2651=10 //initial opacity degree (10%)
this.curimageindex2651=0
this.nextimageindex2651=1
fadearray2651[fadearray2651.length]=this
this.slideshowid2651=fadearray2651.length-1
this.canvasbase2651="canvas2651"+this.slideshowid2651
this.curcanvas2651=this.canvasbase2651+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages2651=theimages
this.imageborder2651=parseInt(borderwidth)
this.postimages2651=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages2651[p]=new Image()
this.postimages2651[p].src=theimages[p][0]
this.postimages2651[p].alt=theimages[p][3]
}

var fadewidth2651=fadewidth+this.imageborder2651*2
var fadeheight2651=fadeheight+this.imageborder2651*2

if (iebrowser2651&&dom2651||dom2651) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master2651'+this.slideshowid2651+'" class="slide-show-wrapper-2651" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase2651+'_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:'+fadebgcolor2651+'"></div><div id="'+this.canvasbase2651+'_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:'+fadebgcolor2651+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-2651-content-with-border" name="defaultslide2651'+this.slideshowid2651+'" src="'+this.postimages2651[0].src+'" alt="'+this.postimages2651[0].alt+'"></div>')

if (iebrowser2651&&dom2651||dom2651) //if IE5+ or modern browsers such as Firefox
this.startit2651()
else{
this.curimageindex2651++
setInterval("fadearray2651["+this.slideshowid2651+"].rotateimage2651()", this.delay2651)
}
}





function fadepic2651(obj2651){
if (obj2651.degree2651<100){
obj2651.degree2651+=10
if (obj2651.tempobj2651.filters&&obj2651.tempobj2651.filters[0]){
if (typeof obj2651.tempobj2651.filters[0].opacity=="number") //if IE6+
obj2651.tempobj2651.filters[0].opacity=obj2651.degree2651
else //else if IE5.5-
obj2651.tempobj2651.style.filter="alpha(opacity="+obj2651.degree2651+")"
}
else if (obj2651.tempobj2651.style.MozOpacity)
obj2651.tempobj2651.style.MozOpacity=obj2651.degree2651/101
else if (obj2651.tempobj2651.style.KhtmlOpacity)
obj2651.tempobj2651.style.KhtmlOpacity=obj2651.degree2651/100
else if (obj2651.tempobj2651.style.opacity&&!obj2651.tempobj2651.filters)
obj2651.tempobj2651.style.opacity=obj2651.degree2651/101
}
else{
clearInterval(fadeclear2651[obj2651.slideshowid2651])
obj2651.nextcanvas2651=(obj2651.curcanvas2651==obj2651.canvasbase2651+"_0")? obj2651.canvasbase2651+"_0" : obj2651.canvasbase2651+"_1"
obj2651.tempobj2651=iebrowser2651? iebrowser2651[obj2651.nextcanvas2651] : document.getElementById(obj2651.nextcanvas2651)
obj2651.populateslide2651(obj2651.tempobj2651, obj2651.nextimageindex2651)
obj2651.nextimageindex2651=(obj2651.nextimageindex2651<obj2651.postimages2651.length-1)? obj2651.nextimageindex2651+1 : 0
setTimeout("fadearray2651["+obj2651.slideshowid2651+"].rotateimage2651()", obj2651.delay2651)
}
}


fadeshow2651.prototype.populateslide2651=function(picobj2651, picindex2651){
var slideHTML2651=""
if (this.theimages2651[picindex2651][1]!="") //if associated link exists for image
slideHTML2651='<a href="'+this.theimages2651[picindex2651][1]+'" target="'+this.theimages2651[picindex2651][2]+'">'
slideHTML2651+='<img class="edu-il-ws-2651-content-with-border" src="'+this.postimages2651[picindex2651].src+'" alt="'+this.postimages2651[picindex2651].alt+'" border="'+this.imageborder2651+'px">'
if (this.theimages2651[picindex2651][1]!="") //if associated link exists for image
slideHTML2651+='</a>'
picobj2651.innerHTML=slideHTML2651
}


fadeshow2651.prototype.rotateimage2651=function(){
if (this.pausecheck2651==1) //if pause onMouseover enabled, cache object
var cacheobj2651=this
if (this.mouseovercheck2651==1)
setTimeout(function(){cacheobj2651.rotateimage2651()}, 100)
else if (iebrowser2651&&dom2651||dom2651){
this.resetit2651()
var crossobj2651=this.tempobj2651=iebrowser2651? iebrowser2651[this.curcanvas2651] : document.getElementById(this.curcanvas2651)
crossobj2651.style.zIndex++
fadeclear2651[this.slideshowid2651]=setInterval("fadepic2651(fadearray2651["+this.slideshowid2651+"])",50)
this.curcanvas2651=(this.curcanvas2651==this.canvasbase2651+"_0")? this.canvasbase2651+"_1" : this.canvasbase2651+"_0"
}
else{
var ns4imgobj2651=document.images['defaultslide2651'+this.slideshowid2651]
ns4imgobj2651.src=this.postimages2651[this.curimageindex2651].src
ms4imgobj2651.alt=this.postimages2651[this.curimageindex2651].alt
}
this.curimageindex2651=(this.curimageindex2651<this.postimages2651.length-1)? this.curimageindex2651+1 : 0
}

fadeshow2651.prototype.resetit2651=function(){
this.degree2651=10
var crossobj2651=iebrowser2651? iebrowser2651[this.curcanvas2651] : document.getElementById(this.curcanvas2651)
if (crossobj2651.filters&&crossobj2651.filters[0]){
if (typeof crossobj2651.filters[0].opacity=="number") //if IE6+
crossobj2651.filters(0).opacity=this.degree2651
else //else if IE5.5-
crossobj2651.style.filter="alpha(opacity="+this.degree2651+")"
}
else if (crossobj2651.style.MozOpacity)
crossobj2651.style.MozOpacity=this.degree2651/101
else if (crossobj2651.style.KhtmlOpacity)
crossobj2651.style.KhtmlOpacity=this.degree2651/100
else if (crossobj2651.style.opacity&&!crossobj2651.filters)
crossobj2651.style.opacity=this.degree2651/101
}


fadeshow2651.prototype.startit2651=function(){
var crossobj2651=iebrowser2651? iebrowser2651[this.curcanvas2651] : document.getElementById(this.curcanvas2651)
this.populateslide2651(crossobj2651, this.curimageindex2651)
if (this.pausecheck2651==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj2651=this
var crossobjcontainer2651=iebrowser2651? iebrowser2651["master2651"+this.slideshowid2651] : document.getElementById("master2651"+this.slideshowid2651)
crossobjcontainer2651.onmouseover=function(){cacheobj2651.mouseovercheck2651=1}
crossobjcontainer2651.onmouseout=function(){cacheobj2651.mouseovercheck2651=0}
}
this.rotateimage2651()
}
var delay = 3 * 1000;
new fadeshow2651 (fadeimages2651, 250, 250, 0, delay, 1, 'truefalse')

document.write("");

