var wsStyleVar = document.createElement('style');
var wsContentVar = '';
wsContentVar += '.slide-show-wrapper-1756{';
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 fadeimages1756=new Array()

fadeimages1756 [0]=["https://illinois.edu/lb/files/2009/08/24/21029.jpg", "", "", "Illinois Softball"];
var fadebgcolor1756="white"

////NO need to edit beyond here/////////////

var fadearray1756=new Array() //array to cache fadeshow instances
var fadeclear1756=new Array() //array to cache corresponding clearinterval pointers

var dom1756=(document.getElementById) //modern dom browsers
var iebrowser1756=document.all

function fadeshow1756(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck1756=pause
this.mouseovercheck1756=0
this.delay1756=delay
this.degree1756=10 //initial opacity degree (10%)
this.curimageindex1756=0
this.nextimageindex1756=1
fadearray1756[fadearray1756.length]=this
this.slideshowid1756=fadearray1756.length-1
this.canvasbase1756="canvas1756"+this.slideshowid1756
this.curcanvas1756=this.canvasbase1756+"_0"
if (displayorder=="truetrue")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages1756=theimages
this.imageborder1756=parseInt(borderwidth)
this.postimages1756=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages1756[p]=new Image()
this.postimages1756[p].src=theimages[p][0]
this.postimages1756[p].alt=theimages[p][3]
}

var fadewidth1756=fadewidth+this.imageborder1756*2
var fadeheight1756=fadeheight+this.imageborder1756*2

if (iebrowser1756&&dom1756||dom1756) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master1756'+this.slideshowid1756+'" class="slide-show-wrapper-1756" style="position:relative;overflow:hidden;"><div class="test" id="'+this.canvasbase1756+'_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:'+fadebgcolor1756+'"></div><div id="'+this.canvasbase1756+'_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:'+fadebgcolor1756+'"></div></div>')
else
document.write('<div><img class="edu-il-ws-1756-content-with-border" name="defaultslide1756'+this.slideshowid1756+'" src="'+this.postimages1756[0].src+'" alt="'+this.postimages1756[0].alt+'"></div>')

if (iebrowser1756&&dom1756||dom1756) //if IE5+ or modern browsers such as Firefox
this.startit1756()
else{
this.curimageindex1756++
setInterval("fadearray1756["+this.slideshowid1756+"].rotateimage1756()", this.delay1756)
}
}





function fadepic1756(obj1756){
if (obj1756.degree1756<100){
obj1756.degree1756+=10
if (obj1756.tempobj1756.filters&&obj1756.tempobj1756.filters[0]){
if (typeof obj1756.tempobj1756.filters[0].opacity=="number") //if IE6+
obj1756.tempobj1756.filters[0].opacity=obj1756.degree1756
else //else if IE5.5-
obj1756.tempobj1756.style.filter="alpha(opacity="+obj1756.degree1756+")"
}
else if (obj1756.tempobj1756.style.MozOpacity)
obj1756.tempobj1756.style.MozOpacity=obj1756.degree1756/101
else if (obj1756.tempobj1756.style.KhtmlOpacity)
obj1756.tempobj1756.style.KhtmlOpacity=obj1756.degree1756/100
else if (obj1756.tempobj1756.style.opacity&&!obj1756.tempobj1756.filters)
obj1756.tempobj1756.style.opacity=obj1756.degree1756/101
}
else{
clearInterval(fadeclear1756[obj1756.slideshowid1756])
obj1756.nextcanvas1756=(obj1756.curcanvas1756==obj1756.canvasbase1756+"_0")? obj1756.canvasbase1756+"_0" : obj1756.canvasbase1756+"_1"
obj1756.tempobj1756=iebrowser1756? iebrowser1756[obj1756.nextcanvas1756] : document.getElementById(obj1756.nextcanvas1756)
obj1756.populateslide1756(obj1756.tempobj1756, obj1756.nextimageindex1756)
obj1756.nextimageindex1756=(obj1756.nextimageindex1756<obj1756.postimages1756.length-1)? obj1756.nextimageindex1756+1 : 0
setTimeout("fadearray1756["+obj1756.slideshowid1756+"].rotateimage1756()", obj1756.delay1756)
}
}


fadeshow1756.prototype.populateslide1756=function(picobj1756, picindex1756){
var slideHTML1756=""
if (this.theimages1756[picindex1756][1]!="") //if associated link exists for image
slideHTML1756='<a href="'+this.theimages1756[picindex1756][1]+'" target="'+this.theimages1756[picindex1756][2]+'">'
slideHTML1756+='<img class="edu-il-ws-1756-content-with-border" src="'+this.postimages1756[picindex1756].src+'" alt="'+this.postimages1756[picindex1756].alt+'" border="'+this.imageborder1756+'px">'
if (this.theimages1756[picindex1756][1]!="") //if associated link exists for image
slideHTML1756+='</a>'
picobj1756.innerHTML=slideHTML1756
}


fadeshow1756.prototype.rotateimage1756=function(){
if (this.pausecheck1756==1) //if pause onMouseover enabled, cache object
var cacheobj1756=this
if (this.mouseovercheck1756==1)
setTimeout(function(){cacheobj1756.rotateimage1756()}, 100)
else if (iebrowser1756&&dom1756||dom1756){
this.resetit1756()
var crossobj1756=this.tempobj1756=iebrowser1756? iebrowser1756[this.curcanvas1756] : document.getElementById(this.curcanvas1756)
crossobj1756.style.zIndex++
fadeclear1756[this.slideshowid1756]=setInterval("fadepic1756(fadearray1756["+this.slideshowid1756+"])",50)
this.curcanvas1756=(this.curcanvas1756==this.canvasbase1756+"_0")? this.canvasbase1756+"_1" : this.canvasbase1756+"_0"
}
else{
var ns4imgobj1756=document.images['defaultslide1756'+this.slideshowid1756]
ns4imgobj1756.src=this.postimages1756[this.curimageindex1756].src
ms4imgobj1756.alt=this.postimages1756[this.curimageindex1756].alt
}
this.curimageindex1756=(this.curimageindex1756<this.postimages1756.length-1)? this.curimageindex1756+1 : 0
}

fadeshow1756.prototype.resetit1756=function(){
this.degree1756=10
var crossobj1756=iebrowser1756? iebrowser1756[this.curcanvas1756] : document.getElementById(this.curcanvas1756)
if (crossobj1756.filters&&crossobj1756.filters[0]){
if (typeof crossobj1756.filters[0].opacity=="number") //if IE6+
crossobj1756.filters(0).opacity=this.degree1756
else //else if IE5.5-
crossobj1756.style.filter="alpha(opacity="+this.degree1756+")"
}
else if (crossobj1756.style.MozOpacity)
crossobj1756.style.MozOpacity=this.degree1756/101
else if (crossobj1756.style.KhtmlOpacity)
crossobj1756.style.KhtmlOpacity=this.degree1756/100
else if (crossobj1756.style.opacity&&!crossobj1756.filters)
crossobj1756.style.opacity=this.degree1756/101
}


fadeshow1756.prototype.startit1756=function(){
var crossobj1756=iebrowser1756? iebrowser1756[this.curcanvas1756] : document.getElementById(this.curcanvas1756)
this.populateslide1756(crossobj1756, this.curimageindex1756)
if (this.pausecheck1756==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj1756=this
var crossobjcontainer1756=iebrowser1756? iebrowser1756["master1756"+this.slideshowid1756] : document.getElementById("master1756"+this.slideshowid1756)
crossobjcontainer1756.onmouseover=function(){cacheobj1756.mouseovercheck1756=1}
crossobjcontainer1756.onmouseout=function(){cacheobj1756.mouseovercheck1756=0}
}
this.rotateimage1756()
}
var delay = 7 * 1000;
new fadeshow1756 (fadeimages1756, 250, 250, 0, delay, 1, 'truefalse')

document.write("");
